Imported Upstream version 2.57.2
[platform/upstream/glib.git] / gio / gdbusconnection.c
1 /* GDBus - GLib D-Bus Library
2  *
3  * Copyright (C) 2008-2010 Red Hat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General
16  * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
17  *
18  * Author: David Zeuthen <davidz@redhat.com>
19  */
20
21 /*
22  * TODO for GDBus:
23  *
24  * - would be nice to expose GDBusAuthMechanism and an extension point
25  *
26  * - Need to rewrite GDBusAuth and rework GDBusAuthMechanism. In particular
27  *   the mechanism VFuncs need to be able to set an error.
28  *
29  * - Need to document other mechanisms/sources for determining the D-Bus
30  *   address of a well-known bus.
31  *
32  *   - e.g. on Win32 we need code like from here
33  *
34  *     http://cgit.freedesktop.org/~david/gdbus-standalone/tree/gdbus/gdbusaddress.c#n900
35  *
36  *     that was never copied over here because it originally was copy-paste
37  *     from the GPLv2 / AFL 2.1 libdbus sources.
38  *
39  *   - on OS X we need to look in launchd for the address
40  *
41  *     https://bugs.freedesktop.org/show_bug.cgi?id=14259
42  *
43  *   - on X11 we need to look in a X11 property on the X server
44  *     - (we can also just use dbus-launch(1) from the D-Bus
45  *        distribution)
46  *
47  *   - (ideally) this requires D-Bus spec work because none of
48  *     this has never really been specced out properly (except
49  *     the X11 bits)
50  *
51  * - Related to the above, we also need to be able to launch a message bus
52  *   instance.... Since we don't want to write our own bus daemon we should
53  *   launch dbus-daemon(1) (thus: Win32 and OS X need to bundle it)
54  *
55  * - probably want a G_DBUS_NONCE_TCP_TMPDIR environment variable
56  *   to specify where the nonce is stored. This will allow people to use
57  *   G_DBUS_NONCE_TCP_TMPDIR=/mnt/secure.company.server/dbus-nonce-dir
58  *   to easily achieve secure RPC via nonce-tcp.
59  *
60  * - need to expose an extension point for resolving D-Bus address and
61  *   turning them into GIOStream objects. This will allow us to implement
62  *   e.g. X11 D-Bus transports without dlopen()'ing or linking against
63  *   libX11 from libgio.
64  *   - see g_dbus_address_connect() in gdbusaddress.c
65  *
66  * - would be cute to use kernel-specific APIs to resolve fds for
67  *   debug output when using G_DBUS_DEBUG=message, e.g. in addition to
68  *
69  *     fd 21: dev=8:1,mode=0100644,ino=1171231,uid=0,gid=0,rdev=0:0,size=234,atime=1273070640,mtime=1267126160,ctime=1267126160
70  *
71  *   maybe we can show more information about what fd 21 really is.
72  *   Ryan suggests looking in /proc/self/fd for clues / symlinks!
73  *   Initial experiments on Linux 2.6 suggests that the symlink looks
74  *   like this:
75  *
76  *    3 -> /proc/18068/fd
77  *
78  *   e.g. not of much use.
79  *
80  *  - GDBus High-Level docs
81  *    - Proxy: properties, signals...
82  *    - Connection: IOStream based, ::close, connection setup steps
83  *                  mainloop integration, threading
84  *    - Differences from libdbus (extend "Migrating from")
85  *      - the message handling thread
86  *      - Using GVariant instead of GValue
87  *    - Explain why the high-level API is a good thing and what
88  *      kind of pitfalls it avoids
89  *      - Export objects before claiming names
90  *    - Talk about auto-starting services (cf. GBusNameWatcherFlags)
91  */
92
93 #include "config.h"
94
95 #include <stdlib.h>
96 #include <string.h>
97
98 #include "gdbusauth.h"
99 #include "gdbusutils.h"
100 #include "gdbusaddress.h"
101 #include "gdbusmessage.h"
102 #include "gdbusconnection.h"
103 #include "gdbuserror.h"
104 #include "gioenumtypes.h"
105 #include "gdbusintrospection.h"
106 #include "gdbusmethodinvocation.h"
107 #include "gdbusprivate.h"
108 #include "gdbusauthobserver.h"
109 #include "ginitable.h"
110 #include "gasyncinitable.h"
111 #include "giostream.h"
112 #include "gasyncresult.h"
113 #include "gtask.h"
114
115 #ifdef G_OS_UNIX
116 #include "gunixconnection.h"
117 #include "gunixfdmessage.h"
118 #endif
119
120 #include "glibintl.h"
121
122 /**
123  * SECTION:gdbusconnection
124  * @short_description: D-Bus Connections
125  * @include: gio/gio.h
126  *
127  * The #GDBusConnection type is used for D-Bus connections to remote
128  * peers such as a message buses. It is a low-level API that offers a
129  * lot of flexibility. For instance, it lets you establish a connection
130  * over any transport that can by represented as an #GIOStream.
131  *
132  * This class is rarely used directly in D-Bus clients. If you are writing
133  * a D-Bus client, it is often easier to use the g_bus_own_name(),
134  * g_bus_watch_name() or g_dbus_proxy_new_for_bus() APIs.
135  *
136  * As an exception to the usual GLib rule that a particular object must not
137  * be used by two threads at the same time, #GDBusConnection's methods may be
138  * called from any thread. This is so that g_bus_get() and g_bus_get_sync()
139  * can safely return the same #GDBusConnection when called from any thread.
140  *
141  * Most of the ways to obtain a #GDBusConnection automatically initialize it
142  * (i.e. connect to D-Bus): for instance, g_dbus_connection_new() and
143  * g_bus_get(), and the synchronous versions of those methods, give you an
144  * initialized connection. Language bindings for GIO should use
145  * g_initable_new() or g_async_initable_new_async(), which also initialize the
146  * connection.
147  *
148  * If you construct an uninitialized #GDBusConnection, such as via
149  * g_object_new(), you must initialize it via g_initable_init() or
150  * g_async_initable_init_async() before using its methods or properties.
151  * Calling methods or accessing properties on a #GDBusConnection that has not
152  * completed initialization successfully is considered to be invalid, and leads
153  * to undefined behaviour. In particular, if initialization fails with a
154  * #GError, the only valid thing you can do with that #GDBusConnection is to
155  * free it with g_object_unref().
156  *
157  * ## An example D-Bus server # {#gdbus-server}
158  *
159  * Here is an example for a D-Bus server:
160  * [gdbus-example-server.c](https://git.gnome.org/browse/glib/tree/gio/tests/gdbus-example-server.c)
161  *
162  * ## An example for exporting a subtree # {#gdbus-subtree-server}
163  *
164  * Here is an example for exporting a subtree:
165  * [gdbus-example-subtree.c](https://git.gnome.org/browse/glib/tree/gio/tests/gdbus-example-subtree.c)
166  *
167  * ## An example for file descriptor passing # {#gdbus-unix-fd-client}
168  *
169  * Here is an example for passing UNIX file descriptors:
170  * [gdbus-unix-fd-client.c](https://git.gnome.org/browse/glib/tree/gio/tests/gdbus-example-unix-fd-client.c)
171  *
172  * ## An example for exporting a GObject # {#gdbus-export}
173  *
174  * Here is an example for exporting a #GObject:
175  * [gdbus-example-export.c](https://git.gnome.org/browse/glib/tree/gio/tests/gdbus-example-export.c)
176  */
177
178 /* ---------------------------------------------------------------------------------------------------- */
179
180 typedef struct _GDBusConnectionClass GDBusConnectionClass;
181
182 /**
183  * GDBusConnectionClass:
184  * @closed: Signal class handler for the #GDBusConnection::closed signal.
185  *
186  * Class structure for #GDBusConnection.
187  *
188  * Since: 2.26
189  */
190 struct _GDBusConnectionClass
191 {
192   /*< private >*/
193   GObjectClass parent_class;
194
195   /*< public >*/
196   /* Signals */
197   void (*closed) (GDBusConnection *connection,
198                   gboolean         remote_peer_vanished,
199                   GError          *error);
200 };
201
202 G_LOCK_DEFINE_STATIC (message_bus_lock);
203
204 static GWeakRef the_session_bus;
205 static GWeakRef the_system_bus;
206
207 /* Extra pseudo-member of GDBusSendMessageFlags.
208  * Set by initable_init() to indicate that despite not being initialized yet,
209  * enough of the only-valid-after-init members are set that we can send a
210  * message, and we're being called from its thread, so no memory barrier is
211  * required before accessing them.
212  */
213 #define SEND_MESSAGE_FLAGS_INITIALIZING (1u << 31)
214
215 /* Same as SEND_MESSAGE_FLAGS_INITIALIZING, but in GDBusCallFlags */
216 #define CALL_FLAGS_INITIALIZING (1u << 31)
217
218 /* ---------------------------------------------------------------------------------------------------- */
219
220 typedef struct
221 {
222   GDestroyNotify              callback;
223   gpointer                    user_data;
224   GMainContext               *context;
225 } CallDestroyNotifyData;
226
227 static gboolean
228 call_destroy_notify_data_in_idle (gpointer user_data)
229 {
230   CallDestroyNotifyData *data = user_data;
231   data->callback (data->user_data);
232   return FALSE;
233 }
234
235 static void
236 call_destroy_notify_data_free (CallDestroyNotifyData *data)
237 {
238   if (data->context != NULL)
239     g_main_context_unref (data->context);
240   g_free (data);
241 }
242
243 /*
244  * call_destroy_notify: <internal>
245  * @context: (nullable): A #GMainContext or %NULL.
246  * @callback: (nullable): A #GDestroyNotify or %NULL.
247  * @user_data: Data to pass to @callback.
248  *
249  * Schedules @callback to run in @context.
250  */
251 static void
252 call_destroy_notify (GMainContext  *context,
253                      GDestroyNotify callback,
254                      gpointer       user_data)
255 {
256   GSource *idle_source;
257   CallDestroyNotifyData *data;
258
259   if (callback == NULL)
260     goto out;
261
262   data = g_new0 (CallDestroyNotifyData, 1);
263   data->callback = callback;
264   data->user_data = user_data;
265   data->context = context;
266   if (data->context != NULL)
267     g_main_context_ref (data->context);
268
269   idle_source = g_idle_source_new ();
270   g_source_set_priority (idle_source, G_PRIORITY_DEFAULT);
271   g_source_set_callback (idle_source,
272                          call_destroy_notify_data_in_idle,
273                          data,
274                          (GDestroyNotify) call_destroy_notify_data_free);
275   g_source_set_name (idle_source, "[gio] call_destroy_notify_data_in_idle");
276   g_source_attach (idle_source, data->context);
277   g_source_unref (idle_source);
278
279  out:
280   ;
281 }
282
283 /* ---------------------------------------------------------------------------------------------------- */
284
285 static gboolean
286 _g_strv_has_string (const gchar* const *haystack,
287                     const gchar        *needle)
288 {
289   guint n;
290
291   for (n = 0; haystack != NULL && haystack[n] != NULL; n++)
292     {
293       if (g_strcmp0 (haystack[n], needle) == 0)
294         return TRUE;
295     }
296   return FALSE;
297 }
298
299 /* ---------------------------------------------------------------------------------------------------- */
300
301 #ifdef G_OS_WIN32
302 #define CONNECTION_ENSURE_LOCK(obj) do { ; } while (FALSE)
303 #else
304 // TODO: for some reason this doesn't work on Windows
305 #define CONNECTION_ENSURE_LOCK(obj) do {                                \
306     if (G_UNLIKELY (g_mutex_trylock(&(obj)->lock)))                     \
307       {                                                                 \
308         g_assertion_message (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, \
309                              "CONNECTION_ENSURE_LOCK: GDBusConnection object lock is not locked"); \
310       }                                                                 \
311   } while (FALSE)
312 #endif
313
314 #define CONNECTION_LOCK(obj) do {                                       \
315     g_mutex_lock (&(obj)->lock);                                        \
316   } while (FALSE)
317
318 #define CONNECTION_UNLOCK(obj) do {                                     \
319     g_mutex_unlock (&(obj)->lock);                                      \
320   } while (FALSE)
321
322 /* Flags in connection->atomic_flags */
323 enum {
324     FLAG_INITIALIZED = 1 << 0,
325     FLAG_EXIT_ON_CLOSE = 1 << 1,
326     FLAG_CLOSED = 1 << 2
327 };
328
329 /**
330  * GDBusConnection:
331  *
332  * The #GDBusConnection structure contains only private data and
333  * should only be accessed using the provided API.
334  *
335  * Since: 2.26
336  */
337 struct _GDBusConnection
338 {
339   /*< private >*/
340   GObject parent_instance;
341
342   /* ------------------------------------------------------------------------ */
343   /* -- General object state ------------------------------------------------ */
344   /* ------------------------------------------------------------------------ */
345
346   /* General-purpose lock for most fields */
347   GMutex lock;
348
349   /* A lock used in the init() method of the GInitable interface - see comments
350    * in initable_init() for why a separate lock is needed.
351    *
352    * If you need both @lock and @init_lock, you must take @init_lock first.
353    */
354   GMutex init_lock;
355
356   /* Set (by loading the contents of /var/lib/dbus/machine-id) the first time
357    * someone calls org.freedesktop.DBus.Peer.GetMachineId(). Protected by @lock.
358    */
359   gchar *machine_id;
360
361   /* The underlying stream used for communication
362    * Read-only after initable_init(), so it may be read if you either
363    * hold @init_lock or check for initialization first.
364    */
365   GIOStream *stream;
366
367   /* The object used for authentication (if any).
368    * Read-only after initable_init(), so it may be read if you either
369    * hold @init_lock or check for initialization first.
370    */
371   GDBusAuth *auth;
372
373   /* Last serial used. Protected by @lock. */
374   guint32 last_serial;
375
376   /* The object used to send/receive messages.
377    * Read-only after initable_init(), so it may be read if you either
378    * hold @init_lock or check for initialization first.
379    */
380   GDBusWorker *worker;
381
382   /* If connected to a message bus, this contains the unique name assigned to
383    * us by the bus (e.g. ":1.42").
384    * Read-only after initable_init(), so it may be read if you either
385    * hold @init_lock or check for initialization first.
386    */
387   gchar *bus_unique_name;
388
389   /* The GUID returned by the other side if we authenticed as a client or
390    * the GUID to use if authenticating as a server.
391    * Read-only after initable_init(), so it may be read if you either
392    * hold @init_lock or check for initialization first.
393    */
394   gchar *guid;
395
396   /* FLAG_INITIALIZED is set exactly when initable_init() has finished running.
397    * Inspect @initialization_error to see whether it succeeded or failed.
398    *
399    * FLAG_EXIT_ON_CLOSE is the exit-on-close property.
400    *
401    * FLAG_CLOSED is the closed property. It may be read at any time, but
402    * may only be written while holding @lock.
403    */
404   volatile gint atomic_flags;
405
406   /* If the connection could not be established during initable_init(),
407    * this GError will be set.
408    * Read-only after initable_init(), so it may be read if you either
409    * hold @init_lock or check for initialization first.
410    */
411   GError *initialization_error;
412
413   /* The result of g_main_context_ref_thread_default() when the object
414    * was created (the GObject _init() function) - this is used for delivery
415    * of the :closed GObject signal.
416    *
417    * Only set in the GObject init function, so no locks are needed.
418    */
419   GMainContext *main_context_at_construction;
420
421   /* Read-only construct properties, no locks needed */
422   gchar *address;
423   GDBusConnectionFlags flags;
424
425   /* Map used for managing method replies, protected by @lock */
426   GHashTable *map_method_serial_to_task;  /* guint32 -> GTask* */
427
428   /* Maps used for managing signal subscription, protected by @lock */
429   GHashTable *map_rule_to_signal_data;                      /* match rule (gchar*)    -> SignalData */
430   GHashTable *map_id_to_signal_data;                        /* id (guint)             -> SignalData */
431   GHashTable *map_sender_unique_name_to_signal_data_array;  /* unique sender (gchar*) -> GPtrArray* of SignalData */
432
433   /* Maps used for managing exported objects and subtrees,
434    * protected by @lock
435    */
436   GHashTable *map_object_path_to_eo;  /* gchar* -> ExportedObject* */
437   GHashTable *map_id_to_ei;           /* guint  -> ExportedInterface* */
438   GHashTable *map_object_path_to_es;  /* gchar* -> ExportedSubtree* */
439   GHashTable *map_id_to_es;           /* guint  -> ExportedSubtree* */
440
441   /* Map used for storing last used serials for each thread, protected by @lock */
442   GHashTable *map_thread_to_last_serial;
443
444   /* Structure used for message filters, protected by @lock */
445   GPtrArray *filters;
446
447   /* Capabilities negotiated during authentication
448    * Read-only after initable_init(), so it may be read without holding a
449    * lock, if you check for initialization first.
450    */
451   GDBusCapabilityFlags capabilities;
452
453   /* Protected by @init_lock */
454   GDBusAuthObserver *authentication_observer;
455
456   /* Read-only after initable_init(), so it may be read if you either
457    * hold @init_lock or check for initialization first.
458    */
459   GCredentials *credentials;
460
461   /* set to TRUE when finalizing */
462   gboolean finalizing;
463 };
464
465 typedef struct ExportedObject ExportedObject;
466 static void exported_object_free (ExportedObject *eo);
467
468 typedef struct ExportedSubtree ExportedSubtree;
469 static void exported_subtree_free (ExportedSubtree *es);
470
471 enum
472 {
473   CLOSED_SIGNAL,
474   LAST_SIGNAL,
475 };
476
477 enum
478 {
479   PROP_0,
480   PROP_STREAM,
481   PROP_ADDRESS,
482   PROP_FLAGS,
483   PROP_GUID,
484   PROP_UNIQUE_NAME,
485   PROP_CLOSED,
486   PROP_EXIT_ON_CLOSE,
487   PROP_CAPABILITY_FLAGS,
488   PROP_AUTHENTICATION_OBSERVER,
489 };
490
491 static void distribute_signals (GDBusConnection  *connection,
492                                 GDBusMessage     *message);
493
494 static void distribute_method_call (GDBusConnection  *connection,
495                                     GDBusMessage     *message);
496
497 static gboolean handle_generic_unlocked (GDBusConnection *connection,
498                                          GDBusMessage    *message);
499
500
501 static void purge_all_signal_subscriptions (GDBusConnection *connection);
502 static void purge_all_filters (GDBusConnection *connection);
503
504 static void schedule_method_call (GDBusConnection            *connection,
505                                   GDBusMessage               *message,
506                                   guint                       registration_id,
507                                   guint                       subtree_registration_id,
508                                   const GDBusInterfaceInfo   *interface_info,
509                                   const GDBusMethodInfo      *method_info,
510                                   const GDBusPropertyInfo    *property_info,
511                                   GVariant                   *parameters,
512                                   const GDBusInterfaceVTable *vtable,
513                                   GMainContext               *main_context,
514                                   gpointer                    user_data);
515
516 #define _G_ENSURE_LOCK(name) do {                                       \
517     if (G_UNLIKELY (G_TRYLOCK(name)))                                   \
518       {                                                                 \
519         g_assertion_message (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, \
520                              "_G_ENSURE_LOCK: Lock '" #name "' is not locked"); \
521       }                                                                 \
522   } while (FALSE)                                                       \
523
524 static guint signals[LAST_SIGNAL] = { 0 };
525
526 static void initable_iface_init       (GInitableIface      *initable_iface);
527 static void async_initable_iface_init (GAsyncInitableIface *async_initable_iface);
528
529 G_DEFINE_TYPE_WITH_CODE (GDBusConnection, g_dbus_connection, G_TYPE_OBJECT,
530                          G_IMPLEMENT_INTERFACE (G_TYPE_INITABLE, initable_iface_init)
531                          G_IMPLEMENT_INTERFACE (G_TYPE_ASYNC_INITABLE, async_initable_iface_init)
532                          );
533
534 /*
535  * Check that all members of @connection that can only be accessed after
536  * the connection is initialized can safely be accessed. If not,
537  * log a critical warning. This function is a memory barrier.
538  *
539  * Returns: %TRUE if initialized
540  */
541 static gboolean
542 check_initialized (GDBusConnection *connection)
543 {
544   /* The access to @atomic_flags isn't conditional, so that this function
545    * provides a memory barrier for thread-safety even if checks are disabled.
546    * (If you don't want this stricter guarantee, you can call
547    * g_return_if_fail (check_initialized (c)).)
548    *
549    * This isn't strictly necessary now that we've decided use of an
550    * uninitialized GDBusConnection is undefined behaviour, but it seems
551    * better to be as deterministic as is feasible.
552    *
553    * (Anything that could suffer a crash from seeing undefined values
554    * must have a race condition - thread A initializes the connection while
555    * thread B calls a method without initialization, hoping that thread A will
556    * win the race - so its behaviour is undefined anyway.)
557    */
558   gint flags = g_atomic_int_get (&connection->atomic_flags);
559
560   g_return_val_if_fail (flags & FLAG_INITIALIZED, FALSE);
561
562   /* We can safely access this, due to the memory barrier above */
563   g_return_val_if_fail (connection->initialization_error == NULL, FALSE);
564
565   return TRUE;
566 }
567
568 typedef enum {
569     MAY_BE_UNINITIALIZED = (1<<1)
570 } CheckUnclosedFlags;
571
572 /*
573  * Check the same thing as check_initialized(), and also that the
574  * connection is not closed. If the connection is uninitialized,
575  * raise a critical warning (it's programmer error); if it's closed,
576  * raise a recoverable GError (it's a runtime error).
577  *
578  * This function is a memory barrier.
579  *
580  * Returns: %TRUE if initialized and not closed
581  */
582 static gboolean
583 check_unclosed (GDBusConnection     *connection,
584                 CheckUnclosedFlags   check,
585                 GError             **error)
586 {
587   /* check_initialized() is effectively inlined, so we don't waste time
588    * doing two memory barriers
589    */
590   gint flags = g_atomic_int_get (&connection->atomic_flags);
591
592   if (!(check & MAY_BE_UNINITIALIZED))
593     {
594       g_return_val_if_fail (flags & FLAG_INITIALIZED, FALSE);
595       g_return_val_if_fail (connection->initialization_error == NULL, FALSE);
596     }
597
598   if (flags & FLAG_CLOSED)
599     {
600       g_set_error_literal (error,
601                            G_IO_ERROR,
602                            G_IO_ERROR_CLOSED,
603                            _("The connection is closed"));
604       return FALSE;
605     }
606
607   return TRUE;
608 }
609
610 static GHashTable *alive_connections = NULL;
611
612 static void
613 g_dbus_connection_dispose (GObject *object)
614 {
615   GDBusConnection *connection = G_DBUS_CONNECTION (object);
616
617   G_LOCK (message_bus_lock);
618   CONNECTION_LOCK (connection);
619   if (connection->worker != NULL)
620     {
621       _g_dbus_worker_stop (connection->worker);
622       connection->worker = NULL;
623       if (alive_connections != NULL)
624         g_warn_if_fail (g_hash_table_remove (alive_connections, connection));
625     }
626   else
627     {
628       if (alive_connections != NULL)
629         g_warn_if_fail (!g_hash_table_contains (alive_connections, connection));
630     }
631   CONNECTION_UNLOCK (connection);
632   G_UNLOCK (message_bus_lock);
633
634   if (G_OBJECT_CLASS (g_dbus_connection_parent_class)->dispose != NULL)
635     G_OBJECT_CLASS (g_dbus_connection_parent_class)->dispose (object);
636 }
637
638 static void
639 g_dbus_connection_finalize (GObject *object)
640 {
641   GDBusConnection *connection = G_DBUS_CONNECTION (object);
642
643   connection->finalizing = TRUE;
644
645   purge_all_signal_subscriptions (connection);
646
647   purge_all_filters (connection);
648   g_ptr_array_unref (connection->filters);
649
650   if (connection->authentication_observer != NULL)
651     g_object_unref (connection->authentication_observer);
652
653   if (connection->auth != NULL)
654     g_object_unref (connection->auth);
655
656   if (connection->credentials)
657     g_object_unref (connection->credentials);
658
659   if (connection->stream != NULL)
660     {
661       g_object_unref (connection->stream);
662       connection->stream = NULL;
663     }
664
665   g_free (connection->address);
666
667   g_free (connection->guid);
668   g_free (connection->bus_unique_name);
669
670   if (connection->initialization_error != NULL)
671     g_error_free (connection->initialization_error);
672
673   g_hash_table_unref (connection->map_method_serial_to_task);
674
675   g_hash_table_unref (connection->map_rule_to_signal_data);
676   g_hash_table_unref (connection->map_id_to_signal_data);
677   g_hash_table_unref (connection->map_sender_unique_name_to_signal_data_array);
678
679   g_hash_table_unref (connection->map_id_to_ei);
680   g_hash_table_unref (connection->map_object_path_to_eo);
681   g_hash_table_unref (connection->map_id_to_es);
682   g_hash_table_unref (connection->map_object_path_to_es);
683
684   g_hash_table_unref (connection->map_thread_to_last_serial);
685
686   g_main_context_unref (connection->main_context_at_construction);
687
688   g_free (connection->machine_id);
689
690   g_mutex_clear (&connection->init_lock);
691   g_mutex_clear (&connection->lock);
692
693   G_OBJECT_CLASS (g_dbus_connection_parent_class)->finalize (object);
694 }
695
696 /* called in any user thread, with the connection's lock not held */
697 static void
698 g_dbus_connection_get_property (GObject    *object,
699                                 guint       prop_id,
700                                 GValue     *value,
701                                 GParamSpec *pspec)
702 {
703   GDBusConnection *connection = G_DBUS_CONNECTION (object);
704
705   switch (prop_id)
706     {
707     case PROP_STREAM:
708       g_value_set_object (value, g_dbus_connection_get_stream (connection));
709       break;
710
711     case PROP_GUID:
712       g_value_set_string (value, g_dbus_connection_get_guid (connection));
713       break;
714
715     case PROP_UNIQUE_NAME:
716       g_value_set_string (value, g_dbus_connection_get_unique_name (connection));
717       break;
718
719     case PROP_CLOSED:
720       g_value_set_boolean (value, g_dbus_connection_is_closed (connection));
721       break;
722
723     case PROP_EXIT_ON_CLOSE:
724       g_value_set_boolean (value, g_dbus_connection_get_exit_on_close (connection));
725       break;
726
727     case PROP_CAPABILITY_FLAGS:
728       g_value_set_flags (value, g_dbus_connection_get_capabilities (connection));
729       break;
730
731     default:
732       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
733       break;
734     }
735 }
736
737 /* called in any user thread, with the connection's lock not held */
738 static void
739 g_dbus_connection_set_property (GObject      *object,
740                                 guint         prop_id,
741                                 const GValue *value,
742                                 GParamSpec   *pspec)
743 {
744   GDBusConnection *connection = G_DBUS_CONNECTION (object);
745
746   switch (prop_id)
747     {
748     case PROP_STREAM:
749       connection->stream = g_value_dup_object (value);
750       break;
751
752     case PROP_GUID:
753       connection->guid = g_value_dup_string (value);
754       break;
755
756     case PROP_ADDRESS:
757       connection->address = g_value_dup_string (value);
758       break;
759
760     case PROP_FLAGS:
761       connection->flags = g_value_get_flags (value);
762       break;
763
764     case PROP_EXIT_ON_CLOSE:
765       g_dbus_connection_set_exit_on_close (connection, g_value_get_boolean (value));
766       break;
767
768     case PROP_AUTHENTICATION_OBSERVER:
769       connection->authentication_observer = g_value_dup_object (value);
770       break;
771
772     default:
773       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
774       break;
775     }
776 }
777
778 /* Base-class implementation of GDBusConnection::closed.
779  *
780  * Called in a user thread, by the main context that was thread-default when
781  * the object was constructed.
782  */
783 static void
784 g_dbus_connection_real_closed (GDBusConnection *connection,
785                                gboolean         remote_peer_vanished,
786                                GError          *error)
787 {
788   gint flags = g_atomic_int_get (&connection->atomic_flags);
789
790   /* Because atomic int access is a memory barrier, we can safely read
791    * initialization_error without a lock, as long as we do it afterwards.
792    */
793   if (remote_peer_vanished &&
794       (flags & FLAG_EXIT_ON_CLOSE) != 0 &&
795       (flags & FLAG_INITIALIZED) != 0 &&
796       connection->initialization_error == NULL)
797     {
798       raise (SIGTERM);
799     }
800 }
801
802 static void
803 g_dbus_connection_class_init (GDBusConnectionClass *klass)
804 {
805   GObjectClass *gobject_class;
806
807   gobject_class = G_OBJECT_CLASS (klass);
808
809   gobject_class->finalize     = g_dbus_connection_finalize;
810   gobject_class->dispose      = g_dbus_connection_dispose;
811   gobject_class->set_property = g_dbus_connection_set_property;
812   gobject_class->get_property = g_dbus_connection_get_property;
813
814   klass->closed = g_dbus_connection_real_closed;
815
816   /**
817    * GDBusConnection:stream:
818    *
819    * The underlying #GIOStream used for I/O.
820    *
821    * If this is passed on construction and is a #GSocketConnection,
822    * then the corresponding #GSocket will be put into non-blocking mode.
823    *
824    * While the #GDBusConnection is active, it will interact with this
825    * stream from a worker thread, so it is not safe to interact with
826    * the stream directly.
827    *
828    * Since: 2.26
829    */
830   g_object_class_install_property (gobject_class,
831                                    PROP_STREAM,
832                                    g_param_spec_object ("stream",
833                                                         P_("IO Stream"),
834                                                         P_("The underlying streams used for I/O"),
835                                                         G_TYPE_IO_STREAM,
836                                                         G_PARAM_READABLE |
837                                                         G_PARAM_WRITABLE |
838                                                         G_PARAM_CONSTRUCT_ONLY |
839                                                         G_PARAM_STATIC_NAME |
840                                                         G_PARAM_STATIC_BLURB |
841                                                         G_PARAM_STATIC_NICK));
842
843   /**
844    * GDBusConnection:address:
845    *
846    * A D-Bus address specifying potential endpoints that can be used
847    * when establishing the connection.
848    *
849    * Since: 2.26
850    */
851   g_object_class_install_property (gobject_class,
852                                    PROP_ADDRESS,
853                                    g_param_spec_string ("address",
854                                                         P_("Address"),
855                                                         P_("D-Bus address specifying potential socket endpoints"),
856                                                         NULL,
857                                                         G_PARAM_WRITABLE |
858                                                         G_PARAM_CONSTRUCT_ONLY |
859                                                         G_PARAM_STATIC_NAME |
860                                                         G_PARAM_STATIC_BLURB |
861                                                         G_PARAM_STATIC_NICK));
862
863   /**
864    * GDBusConnection:flags:
865    *
866    * Flags from the #GDBusConnectionFlags enumeration.
867    *
868    * Since: 2.26
869    */
870   g_object_class_install_property (gobject_class,
871                                    PROP_FLAGS,
872                                    g_param_spec_flags ("flags",
873                                                        P_("Flags"),
874                                                        P_("Flags"),
875                                                        G_TYPE_DBUS_CONNECTION_FLAGS,
876                                                        G_DBUS_CONNECTION_FLAGS_NONE,
877                                                        G_PARAM_WRITABLE |
878                                                        G_PARAM_CONSTRUCT_ONLY |
879                                                        G_PARAM_STATIC_NAME |
880                                                        G_PARAM_STATIC_BLURB |
881                                                        G_PARAM_STATIC_NICK));
882
883   /**
884    * GDBusConnection:guid:
885    *
886    * The GUID of the peer performing the role of server when
887    * authenticating.
888    *
889    * If you are constructing a #GDBusConnection and pass
890    * %G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_SERVER in the
891    * #GDBusConnection:flags property then you MUST also set this
892    * property to a valid guid.
893    *
894    * If you are constructing a #GDBusConnection and pass
895    * %G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_CLIENT in the
896    * #GDBusConnection:flags property you will be able to read the GUID
897    * of the other peer here after the connection has been successfully
898    * initialized.
899    *
900    * Since: 2.26
901    */
902   g_object_class_install_property (gobject_class,
903                                    PROP_GUID,
904                                    g_param_spec_string ("guid",
905                                                         P_("GUID"),
906                                                         P_("GUID of the server peer"),
907                                                         NULL,
908                                                         G_PARAM_READABLE |
909                                                         G_PARAM_WRITABLE |
910                                                         G_PARAM_CONSTRUCT_ONLY |
911                                                         G_PARAM_STATIC_NAME |
912                                                         G_PARAM_STATIC_BLURB |
913                                                         G_PARAM_STATIC_NICK));
914
915   /**
916    * GDBusConnection:unique-name:
917    *
918    * The unique name as assigned by the message bus or %NULL if the
919    * connection is not open or not a message bus connection.
920    *
921    * Since: 2.26
922    */
923   g_object_class_install_property (gobject_class,
924                                    PROP_UNIQUE_NAME,
925                                    g_param_spec_string ("unique-name",
926                                                         P_("unique-name"),
927                                                         P_("Unique name of bus connection"),
928                                                         NULL,
929                                                         G_PARAM_READABLE |
930                                                         G_PARAM_STATIC_NAME |
931                                                         G_PARAM_STATIC_BLURB |
932                                                         G_PARAM_STATIC_NICK));
933
934   /**
935    * GDBusConnection:closed:
936    *
937    * A boolean specifying whether the connection has been closed.
938    *
939    * Since: 2.26
940    */
941   g_object_class_install_property (gobject_class,
942                                    PROP_CLOSED,
943                                    g_param_spec_boolean ("closed",
944                                                          P_("Closed"),
945                                                          P_("Whether the connection is closed"),
946                                                          FALSE,
947                                                          G_PARAM_READABLE |
948                                                          G_PARAM_STATIC_NAME |
949                                                          G_PARAM_STATIC_BLURB |
950                                                          G_PARAM_STATIC_NICK));
951
952   /**
953    * GDBusConnection:exit-on-close:
954    *
955    * A boolean specifying whether the process will be terminated (by
956    * calling `raise(SIGTERM)`) if the connection is closed by the
957    * remote peer.
958    *
959    * Note that #GDBusConnection objects returned by g_bus_get_finish()
960    * and g_bus_get_sync() will (usually) have this property set to %TRUE.
961    *
962    * Since: 2.26
963    */
964   g_object_class_install_property (gobject_class,
965                                    PROP_EXIT_ON_CLOSE,
966                                    g_param_spec_boolean ("exit-on-close",
967                                                          P_("Exit on close"),
968                                                          P_("Whether the process is terminated when the connection is closed"),
969                                                          FALSE,
970                                                          G_PARAM_READABLE |
971                                                          G_PARAM_WRITABLE |
972                                                          G_PARAM_STATIC_NAME |
973                                                          G_PARAM_STATIC_BLURB |
974                                                          G_PARAM_STATIC_NICK));
975
976   /**
977    * GDBusConnection:capabilities:
978    *
979    * Flags from the #GDBusCapabilityFlags enumeration
980    * representing connection features negotiated with the other peer.
981    *
982    * Since: 2.26
983    */
984   g_object_class_install_property (gobject_class,
985                                    PROP_CAPABILITY_FLAGS,
986                                    g_param_spec_flags ("capabilities",
987                                                        P_("Capabilities"),
988                                                        P_("Capabilities"),
989                                                        G_TYPE_DBUS_CAPABILITY_FLAGS,
990                                                        G_DBUS_CAPABILITY_FLAGS_NONE,
991                                                        G_PARAM_READABLE |
992                                                        G_PARAM_STATIC_NAME |
993                                                        G_PARAM_STATIC_BLURB |
994                                                        G_PARAM_STATIC_NICK));
995
996   /**
997    * GDBusConnection:authentication-observer:
998    *
999    * A #GDBusAuthObserver object to assist in the authentication process or %NULL.
1000    *
1001    * Since: 2.26
1002    */
1003   g_object_class_install_property (gobject_class,
1004                                    PROP_AUTHENTICATION_OBSERVER,
1005                                    g_param_spec_object ("authentication-observer",
1006                                                         P_("Authentication Observer"),
1007                                                         P_("Object used to assist in the authentication process"),
1008                                                         G_TYPE_DBUS_AUTH_OBSERVER,
1009                                                         G_PARAM_WRITABLE |
1010                                                         G_PARAM_CONSTRUCT_ONLY |
1011                                                         G_PARAM_STATIC_NAME |
1012                                                         G_PARAM_STATIC_BLURB |
1013                                                         G_PARAM_STATIC_NICK));
1014
1015   /**
1016    * GDBusConnection::closed:
1017    * @connection: the #GDBusConnection emitting the signal
1018    * @remote_peer_vanished: %TRUE if @connection is closed because the
1019    *     remote peer closed its end of the connection
1020    * @error: (nullable): a #GError with more details about the event or %NULL
1021    *
1022    * Emitted when the connection is closed.
1023    *
1024    * The cause of this event can be
1025    *
1026    * - If g_dbus_connection_close() is called. In this case
1027    *   @remote_peer_vanished is set to %FALSE and @error is %NULL.
1028    *
1029    * - If the remote peer closes the connection. In this case
1030    *   @remote_peer_vanished is set to %TRUE and @error is set.
1031    *
1032    * - If the remote peer sends invalid or malformed data. In this
1033    *   case @remote_peer_vanished is set to %FALSE and @error is set.
1034    *
1035    * Upon receiving this signal, you should give up your reference to
1036    * @connection. You are guaranteed that this signal is emitted only
1037    * once.
1038    *
1039    * Since: 2.26
1040    */
1041   signals[CLOSED_SIGNAL] = g_signal_new (I_("closed"),
1042                                          G_TYPE_DBUS_CONNECTION,
1043                                          G_SIGNAL_RUN_LAST,
1044                                          G_STRUCT_OFFSET (GDBusConnectionClass, closed),
1045                                          NULL,
1046                                          NULL,
1047                                          NULL,
1048                                          G_TYPE_NONE,
1049                                          2,
1050                                          G_TYPE_BOOLEAN,
1051                                          G_TYPE_ERROR);
1052 }
1053
1054 static void
1055 g_dbus_connection_init (GDBusConnection *connection)
1056 {
1057   g_mutex_init (&connection->lock);
1058   g_mutex_init (&connection->init_lock);
1059
1060   connection->map_method_serial_to_task = g_hash_table_new (g_direct_hash, g_direct_equal);
1061
1062   connection->map_rule_to_signal_data = g_hash_table_new (g_str_hash,
1063                                                           g_str_equal);
1064   connection->map_id_to_signal_data = g_hash_table_new (g_direct_hash,
1065                                                         g_direct_equal);
1066   connection->map_sender_unique_name_to_signal_data_array = g_hash_table_new_full (g_str_hash,
1067                                                                                    g_str_equal,
1068                                                                                    g_free,
1069                                                                                    (GDestroyNotify) g_ptr_array_unref);
1070
1071   connection->map_object_path_to_eo = g_hash_table_new_full (g_str_hash,
1072                                                              g_str_equal,
1073                                                              NULL,
1074                                                              (GDestroyNotify) exported_object_free);
1075
1076   connection->map_id_to_ei = g_hash_table_new (g_direct_hash,
1077                                                g_direct_equal);
1078
1079   connection->map_object_path_to_es = g_hash_table_new_full (g_str_hash,
1080                                                              g_str_equal,
1081                                                              NULL,
1082                                                              (GDestroyNotify) exported_subtree_free);
1083
1084   connection->map_id_to_es = g_hash_table_new (g_direct_hash,
1085                                                g_direct_equal);
1086
1087   connection->map_thread_to_last_serial = g_hash_table_new (g_direct_hash,
1088                                                             g_direct_equal);
1089
1090   connection->main_context_at_construction = g_main_context_ref_thread_default ();
1091
1092   connection->filters = g_ptr_array_new ();
1093 }
1094
1095 /**
1096  * g_dbus_connection_get_stream:
1097  * @connection: a #GDBusConnection
1098  *
1099  * Gets the underlying stream used for IO.
1100  *
1101  * While the #GDBusConnection is active, it will interact with this
1102  * stream from a worker thread, so it is not safe to interact with
1103  * the stream directly.
1104  *
1105  * Returns: (transfer none): the stream used for IO
1106  *
1107  * Since: 2.26
1108  */
1109 GIOStream *
1110 g_dbus_connection_get_stream (GDBusConnection *connection)
1111 {
1112   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), NULL);
1113
1114   /* do not use g_return_val_if_fail(), we want the memory barrier */
1115   if (!check_initialized (connection))
1116     return NULL;
1117
1118   return connection->stream;
1119 }
1120
1121 /**
1122  * g_dbus_connection_start_message_processing:
1123  * @connection: a #GDBusConnection
1124  *
1125  * If @connection was created with
1126  * %G_DBUS_CONNECTION_FLAGS_DELAY_MESSAGE_PROCESSING, this method
1127  * starts processing messages. Does nothing on if @connection wasn't
1128  * created with this flag or if the method has already been called.
1129  *
1130  * Since: 2.26
1131  */
1132 void
1133 g_dbus_connection_start_message_processing (GDBusConnection *connection)
1134 {
1135   g_return_if_fail (G_IS_DBUS_CONNECTION (connection));
1136
1137   /* do not use g_return_val_if_fail(), we want the memory barrier */
1138   if (!check_initialized (connection))
1139     return;
1140
1141   g_assert (connection->worker != NULL);
1142   _g_dbus_worker_unfreeze (connection->worker);
1143 }
1144
1145 /**
1146  * g_dbus_connection_is_closed:
1147  * @connection: a #GDBusConnection
1148  *
1149  * Gets whether @connection is closed.
1150  *
1151  * Returns: %TRUE if the connection is closed, %FALSE otherwise
1152  *
1153  * Since: 2.26
1154  */
1155 gboolean
1156 g_dbus_connection_is_closed (GDBusConnection *connection)
1157 {
1158   gint flags;
1159
1160   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), FALSE);
1161
1162   flags = g_atomic_int_get (&connection->atomic_flags);
1163
1164   return (flags & FLAG_CLOSED) ? TRUE : FALSE;
1165 }
1166
1167 /**
1168  * g_dbus_connection_get_capabilities:
1169  * @connection: a #GDBusConnection
1170  *
1171  * Gets the capabilities negotiated with the remote peer
1172  *
1173  * Returns: zero or more flags from the #GDBusCapabilityFlags enumeration
1174  *
1175  * Since: 2.26
1176  */
1177 GDBusCapabilityFlags
1178 g_dbus_connection_get_capabilities (GDBusConnection *connection)
1179 {
1180   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), G_DBUS_CAPABILITY_FLAGS_NONE);
1181
1182   /* do not use g_return_val_if_fail(), we want the memory barrier */
1183   if (!check_initialized (connection))
1184     return G_DBUS_CAPABILITY_FLAGS_NONE;
1185
1186   return connection->capabilities;
1187 }
1188
1189 /* ---------------------------------------------------------------------------------------------------- */
1190
1191 /* Called in a temporary thread without holding locks. */
1192 static void
1193 flush_in_thread_func (GTask         *task,
1194                       gpointer       source_object,
1195                       gpointer       task_data,
1196                       GCancellable  *cancellable)
1197 {
1198   GError *error = NULL;
1199
1200   if (g_dbus_connection_flush_sync (source_object,
1201                                     cancellable,
1202                                     &error))
1203     g_task_return_boolean (task, TRUE);
1204   else
1205     g_task_return_error (task, error);
1206 }
1207
1208 /**
1209  * g_dbus_connection_flush:
1210  * @connection: a #GDBusConnection
1211  * @cancellable: (nullable): a #GCancellable or %NULL
1212  * @callback: (nullable): a #GAsyncReadyCallback to call when the
1213  *     request is satisfied or %NULL if you don't care about the result
1214  * @user_data: The data to pass to @callback
1215  *
1216  * Asynchronously flushes @connection, that is, writes all queued
1217  * outgoing message to the transport and then flushes the transport
1218  * (using g_output_stream_flush_async()). This is useful in programs
1219  * that wants to emit a D-Bus signal and then exit immediately. Without
1220  * flushing the connection, there is no guaranteed that the message has
1221  * been sent to the networking buffers in the OS kernel.
1222  *
1223  * This is an asynchronous method. When the operation is finished,
1224  * @callback will be invoked in the
1225  * [thread-default main context][g-main-context-push-thread-default]
1226  * of the thread you are calling this method from. You can
1227  * then call g_dbus_connection_flush_finish() to get the result of the
1228  * operation. See g_dbus_connection_flush_sync() for the synchronous
1229  * version.
1230  *
1231  * Since: 2.26
1232  */
1233 void
1234 g_dbus_connection_flush (GDBusConnection     *connection,
1235                          GCancellable        *cancellable,
1236                          GAsyncReadyCallback  callback,
1237                          gpointer             user_data)
1238 {
1239   GTask *task;
1240
1241   g_return_if_fail (G_IS_DBUS_CONNECTION (connection));
1242
1243   task = g_task_new (connection, cancellable, callback, user_data);
1244   g_task_set_source_tag (task, g_dbus_connection_flush);
1245   g_task_run_in_thread (task, flush_in_thread_func);
1246   g_object_unref (task);
1247 }
1248
1249 /**
1250  * g_dbus_connection_flush_finish:
1251  * @connection: a #GDBusConnection
1252  * @res: a #GAsyncResult obtained from the #GAsyncReadyCallback passed
1253  *     to g_dbus_connection_flush()
1254  * @error: return location for error or %NULL
1255  *
1256  * Finishes an operation started with g_dbus_connection_flush().
1257  *
1258  * Returns: %TRUE if the operation succeeded, %FALSE if @error is set
1259  *
1260  * Since: 2.26
1261  */
1262 gboolean
1263 g_dbus_connection_flush_finish (GDBusConnection  *connection,
1264                                 GAsyncResult     *res,
1265                                 GError          **error)
1266 {
1267   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), FALSE);
1268   g_return_val_if_fail (g_task_is_valid (res, connection), FALSE);
1269   g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
1270
1271   return g_task_propagate_boolean (G_TASK (res), error);
1272 }
1273
1274 /**
1275  * g_dbus_connection_flush_sync:
1276  * @connection: a #GDBusConnection
1277  * @cancellable: (nullable): a #GCancellable or %NULL
1278  * @error: return location for error or %NULL
1279  *
1280  * Synchronously flushes @connection. The calling thread is blocked
1281  * until this is done. See g_dbus_connection_flush() for the
1282  * asynchronous version of this method and more details about what it
1283  * does.
1284  *
1285  * Returns: %TRUE if the operation succeeded, %FALSE if @error is set
1286  *
1287  * Since: 2.26
1288  */
1289 gboolean
1290 g_dbus_connection_flush_sync (GDBusConnection  *connection,
1291                               GCancellable     *cancellable,
1292                               GError          **error)
1293 {
1294   gboolean ret;
1295
1296   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), FALSE);
1297   g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
1298
1299   ret = FALSE;
1300
1301   /* This is only a best-effort attempt to see whether the connection is
1302    * closed, so it doesn't need the lock. If the connection closes just
1303    * after this check, but before scheduling the flush operation, the
1304    * result will be more or less the same as if the connection closed while
1305    * the flush operation was pending - it'll fail with either CLOSED or
1306    * CANCELLED.
1307    */
1308   if (!check_unclosed (connection, 0, error))
1309     goto out;
1310
1311   g_assert (connection->worker != NULL);
1312
1313   ret = _g_dbus_worker_flush_sync (connection->worker,
1314                                    cancellable,
1315                                    error);
1316
1317  out:
1318   return ret;
1319 }
1320
1321 /* ---------------------------------------------------------------------------------------------------- */
1322
1323 typedef struct
1324 {
1325   GDBusConnection *connection;
1326   GError *error;
1327   gboolean remote_peer_vanished;
1328 } EmitClosedData;
1329
1330 static void
1331 emit_closed_data_free (EmitClosedData *data)
1332 {
1333   g_object_unref (data->connection);
1334   if (data->error != NULL)
1335     g_error_free (data->error);
1336   g_free (data);
1337 }
1338
1339 /* Called in a user thread that has acquired the main context that was
1340  * thread-default when the object was constructed
1341  */
1342 static gboolean
1343 emit_closed_in_idle (gpointer user_data)
1344 {
1345   EmitClosedData *data = user_data;
1346   gboolean result;
1347
1348   g_object_notify (G_OBJECT (data->connection), "closed");
1349   g_signal_emit (data->connection,
1350                  signals[CLOSED_SIGNAL],
1351                  0,
1352                  data->remote_peer_vanished,
1353                  data->error,
1354                  &result);
1355   return FALSE;
1356 }
1357
1358 /* Can be called from any thread, must hold lock.
1359  * FLAG_CLOSED must already have been set.
1360  */
1361 static void
1362 schedule_closed_unlocked (GDBusConnection *connection,
1363                           gboolean         remote_peer_vanished,
1364                           GError          *error)
1365 {
1366   GSource *idle_source;
1367   EmitClosedData *data;
1368
1369   CONNECTION_ENSURE_LOCK (connection);
1370
1371   data = g_new0 (EmitClosedData, 1);
1372   data->connection = g_object_ref (connection);
1373   data->remote_peer_vanished = remote_peer_vanished;
1374   data->error = error != NULL ? g_error_copy (error) : NULL;
1375
1376   idle_source = g_idle_source_new ();
1377   g_source_set_priority (idle_source, G_PRIORITY_DEFAULT);
1378   g_source_set_callback (idle_source,
1379                          emit_closed_in_idle,
1380                          data,
1381                          (GDestroyNotify) emit_closed_data_free);
1382   g_source_set_name (idle_source, "[gio] emit_closed_in_idle");
1383   g_source_attach (idle_source, connection->main_context_at_construction);
1384   g_source_unref (idle_source);
1385 }
1386
1387 /* ---------------------------------------------------------------------------------------------------- */
1388
1389 /**
1390  * g_dbus_connection_close:
1391  * @connection: a #GDBusConnection
1392  * @cancellable: (nullable): a #GCancellable or %NULL
1393  * @callback: (nullable): a #GAsyncReadyCallback to call when the request is
1394  *     satisfied or %NULL if you don't care about the result
1395  * @user_data: The data to pass to @callback
1396  *
1397  * Closes @connection. Note that this never causes the process to
1398  * exit (this might only happen if the other end of a shared message
1399  * bus connection disconnects, see #GDBusConnection:exit-on-close).
1400  *
1401  * Once the connection is closed, operations such as sending a message
1402  * will return with the error %G_IO_ERROR_CLOSED. Closing a connection
1403  * will not automatically flush the connection so queued messages may
1404  * be lost. Use g_dbus_connection_flush() if you need such guarantees.
1405  *
1406  * If @connection is already closed, this method fails with
1407  * %G_IO_ERROR_CLOSED.
1408  *
1409  * When @connection has been closed, the #GDBusConnection::closed
1410  * signal is emitted in the
1411  * [thread-default main context][g-main-context-push-thread-default]
1412  * of the thread that @connection was constructed in.
1413  *
1414  * This is an asynchronous method. When the operation is finished,
1415  * @callback will be invoked in the 
1416  * [thread-default main context][g-main-context-push-thread-default]
1417  * of the thread you are calling this method from. You can
1418  * then call g_dbus_connection_close_finish() to get the result of the
1419  * operation. See g_dbus_connection_close_sync() for the synchronous
1420  * version.
1421  *
1422  * Since: 2.26
1423  */
1424 void
1425 g_dbus_connection_close (GDBusConnection     *connection,
1426                          GCancellable        *cancellable,
1427                          GAsyncReadyCallback  callback,
1428                          gpointer             user_data)
1429 {
1430   GTask *task;
1431
1432   g_return_if_fail (G_IS_DBUS_CONNECTION (connection));
1433
1434   /* do not use g_return_val_if_fail(), we want the memory barrier */
1435   if (!check_initialized (connection))
1436     return;
1437
1438   g_assert (connection->worker != NULL);
1439
1440   task = g_task_new (connection, cancellable, callback, user_data);
1441   g_task_set_source_tag (task, g_dbus_connection_close);
1442   _g_dbus_worker_close (connection->worker, task);
1443   g_object_unref (task);
1444 }
1445
1446 /**
1447  * g_dbus_connection_close_finish:
1448  * @connection: a #GDBusConnection
1449  * @res: a #GAsyncResult obtained from the #GAsyncReadyCallback passed
1450  *     to g_dbus_connection_close()
1451  * @error: return location for error or %NULL
1452  *
1453  * Finishes an operation started with g_dbus_connection_close().
1454  *
1455  * Returns: %TRUE if the operation succeeded, %FALSE if @error is set
1456  *
1457  * Since: 2.26
1458  */
1459 gboolean
1460 g_dbus_connection_close_finish (GDBusConnection  *connection,
1461                                 GAsyncResult     *res,
1462                                 GError          **error)
1463 {
1464   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), FALSE);
1465   g_return_val_if_fail (g_task_is_valid (res, connection), FALSE);
1466   g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
1467
1468   return g_task_propagate_boolean (G_TASK (res), error);
1469 }
1470
1471 typedef struct {
1472     GMainLoop *loop;
1473     GAsyncResult *result;
1474 } SyncCloseData;
1475
1476 /* Can be called by any thread, without the connection lock */
1477 static void
1478 sync_close_cb (GObject *source_object,
1479                GAsyncResult *res,
1480                gpointer user_data)
1481 {
1482   SyncCloseData *data = user_data;
1483
1484   data->result = g_object_ref (res);
1485   g_main_loop_quit (data->loop);
1486 }
1487
1488 /**
1489  * g_dbus_connection_close_sync:
1490  * @connection: a #GDBusConnection
1491  * @cancellable: (nullable): a #GCancellable or %NULL
1492  * @error: return location for error or %NULL
1493  *
1494  * Synchronously closes @connection. The calling thread is blocked
1495  * until this is done. See g_dbus_connection_close() for the
1496  * asynchronous version of this method and more details about what it
1497  * does.
1498  *
1499  * Returns: %TRUE if the operation succeeded, %FALSE if @error is set
1500  *
1501  * Since: 2.26
1502  */
1503 gboolean
1504 g_dbus_connection_close_sync (GDBusConnection  *connection,
1505                               GCancellable     *cancellable,
1506                               GError          **error)
1507 {
1508   gboolean ret;
1509
1510   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), FALSE);
1511   g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
1512
1513   ret = FALSE;
1514
1515   if (check_unclosed (connection, 0, error))
1516     {
1517       GMainContext *context;
1518       SyncCloseData data;
1519
1520       context = g_main_context_new ();
1521       g_main_context_push_thread_default (context);
1522       data.loop = g_main_loop_new (context, TRUE);
1523       data.result = NULL;
1524
1525       g_dbus_connection_close (connection, cancellable, sync_close_cb, &data);
1526       g_main_loop_run (data.loop);
1527       ret = g_dbus_connection_close_finish (connection, data.result, error);
1528
1529       g_object_unref (data.result);
1530       g_main_loop_unref (data.loop);
1531       g_main_context_pop_thread_default (context);
1532       g_main_context_unref (context);
1533     }
1534
1535   return ret;
1536 }
1537
1538 /* ---------------------------------------------------------------------------------------------------- */
1539
1540 /**
1541  * g_dbus_connection_get_last_serial:
1542  * @connection: a #GDBusConnection
1543  *
1544  * Retrieves the last serial number assigned to a #GDBusMessage on
1545  * the current thread. This includes messages sent via both low-level
1546  * API such as g_dbus_connection_send_message() as well as
1547  * high-level API such as g_dbus_connection_emit_signal(),
1548  * g_dbus_connection_call() or g_dbus_proxy_call().
1549  *
1550  * Returns: the last used serial or zero when no message has been sent
1551  *     within the current thread
1552  *
1553  * Since: 2.34
1554  */
1555 guint32
1556 g_dbus_connection_get_last_serial (GDBusConnection *connection)
1557 {
1558   guint32 ret;
1559
1560   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), 0);
1561
1562   CONNECTION_LOCK (connection);
1563   ret = GPOINTER_TO_UINT (g_hash_table_lookup (connection->map_thread_to_last_serial,
1564                                                g_thread_self ()));
1565   CONNECTION_UNLOCK (connection);
1566
1567   return ret;
1568 }
1569
1570 /* ---------------------------------------------------------------------------------------------------- */
1571
1572 /* Can be called by any thread, with the connection lock held */
1573 static gboolean
1574 g_dbus_connection_send_message_unlocked (GDBusConnection   *connection,
1575                                          GDBusMessage      *message,
1576                                          GDBusSendMessageFlags flags,
1577                                          volatile guint32  *out_serial,
1578                                          GError           **error)
1579 {
1580   guchar *blob;
1581   gsize blob_size;
1582   guint32 serial_to_use;
1583   gboolean ret;
1584
1585   CONNECTION_ENSURE_LOCK (connection);
1586
1587   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), FALSE);
1588   g_return_val_if_fail (G_IS_DBUS_MESSAGE (message), FALSE);
1589
1590   /* TODO: check all necessary headers are present */
1591
1592   ret = FALSE;
1593   blob = NULL;
1594
1595   if (out_serial != NULL)
1596     *out_serial = 0;
1597
1598   /* If we're in initable_init(), don't check for being initialized, to avoid
1599    * chicken-and-egg problems. initable_init() is responsible for setting up
1600    * our prerequisites (mainly connection->worker), and only calling us
1601    * from its own thread (so no memory barrier is needed).
1602    */
1603   if (!check_unclosed (connection,
1604                        (flags & SEND_MESSAGE_FLAGS_INITIALIZING) ? MAY_BE_UNINITIALIZED : 0,
1605                        error))
1606     goto out;
1607
1608   blob = g_dbus_message_to_blob (message,
1609                                  &blob_size,
1610                                  connection->capabilities,
1611                                  error);
1612   if (blob == NULL)
1613     goto out;
1614
1615   if (flags & G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL)
1616     serial_to_use = g_dbus_message_get_serial (message);
1617   else
1618     serial_to_use = ++connection->last_serial; /* TODO: handle overflow */
1619
1620   switch (blob[0])
1621     {
1622     case 'l':
1623       ((guint32 *) blob)[2] = GUINT32_TO_LE (serial_to_use);
1624       break;
1625     case 'B':
1626       ((guint32 *) blob)[2] = GUINT32_TO_BE (serial_to_use);
1627       break;
1628     default:
1629       g_assert_not_reached ();
1630       break;
1631     }
1632
1633 #if 0
1634   g_printerr ("Writing message of %" G_GSIZE_FORMAT " bytes (serial %d) on %p:\n",
1635               blob_size, serial_to_use, connection);
1636   g_printerr ("----\n");
1637   hexdump (blob, blob_size);
1638   g_printerr ("----\n");
1639 #endif
1640
1641   /* TODO: use connection->auth to encode the blob */
1642
1643   if (out_serial != NULL)
1644     *out_serial = serial_to_use;
1645
1646   /* store used serial for the current thread */
1647   /* TODO: watch the thread disposal and remove associated record
1648    *       from hashtable
1649    *  - see https://bugzilla.gnome.org/show_bug.cgi?id=676825#c7
1650    */
1651   g_hash_table_replace (connection->map_thread_to_last_serial,
1652                         g_thread_self (),
1653                         GUINT_TO_POINTER (serial_to_use));
1654
1655   if (!(flags & G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL))
1656     g_dbus_message_set_serial (message, serial_to_use);
1657
1658   g_dbus_message_lock (message);
1659   _g_dbus_worker_send_message (connection->worker,
1660                                message,
1661                                (gchar*) blob,
1662                                blob_size);
1663   blob = NULL; /* since _g_dbus_worker_send_message() steals the blob */
1664
1665   ret = TRUE;
1666
1667  out:
1668   g_free (blob);
1669
1670   return ret;
1671 }
1672
1673 /**
1674  * g_dbus_connection_send_message:
1675  * @connection: a #GDBusConnection
1676  * @message: a #GDBusMessage
1677  * @flags: flags affecting how the message is sent
1678  * @out_serial: (out) (optional): return location for serial number assigned
1679  *     to @message when sending it or %NULL
1680  * @error: Return location for error or %NULL
1681  *
1682  * Asynchronously sends @message to the peer represented by @connection.
1683  *
1684  * Unless @flags contain the
1685  * %G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL flag, the serial number
1686  * will be assigned by @connection and set on @message via
1687  * g_dbus_message_set_serial(). If @out_serial is not %NULL, then the
1688  * serial number used will be written to this location prior to
1689  * submitting the message to the underlying transport.
1690  *
1691  * If @connection is closed then the operation will fail with
1692  * %G_IO_ERROR_CLOSED. If @message is not well-formed,
1693  * the operation fails with %G_IO_ERROR_INVALID_ARGUMENT.
1694  *
1695  * See this [server][gdbus-server] and [client][gdbus-unix-fd-client]
1696  * for an example of how to use this low-level API to send and receive
1697  * UNIX file descriptors.
1698  *
1699  * Note that @message must be unlocked, unless @flags contain the
1700  * %G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL flag.
1701  *
1702  * Returns: %TRUE if the message was well-formed and queued for
1703  *     transmission, %FALSE if @error is set
1704  *
1705  * Since: 2.26
1706  */
1707 gboolean
1708 g_dbus_connection_send_message (GDBusConnection        *connection,
1709                                 GDBusMessage           *message,
1710                                 GDBusSendMessageFlags   flags,
1711                                 volatile guint32       *out_serial,
1712                                 GError                **error)
1713 {
1714   gboolean ret;
1715
1716   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), FALSE);
1717   g_return_val_if_fail (G_IS_DBUS_MESSAGE (message), FALSE);
1718   g_return_val_if_fail ((flags & G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL) || !g_dbus_message_get_locked (message), FALSE);
1719   g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
1720
1721   CONNECTION_LOCK (connection);
1722   ret = g_dbus_connection_send_message_unlocked (connection, message, flags, out_serial, error);
1723   CONNECTION_UNLOCK (connection);
1724   return ret;
1725 }
1726
1727 /* ---------------------------------------------------------------------------------------------------- */
1728
1729 typedef struct
1730 {
1731   guint32 serial;
1732
1733   gulong cancellable_handler_id;
1734
1735   GSource *timeout_source;
1736
1737   gboolean delivered;
1738 } SendMessageData;
1739
1740 /* Can be called from any thread with or without lock held */
1741 static void
1742 send_message_data_free (SendMessageData *data)
1743 {
1744   g_assert (data->timeout_source == NULL);
1745   g_assert (data->cancellable_handler_id == 0);
1746
1747   g_slice_free (SendMessageData, data);
1748 }
1749
1750 /* ---------------------------------------------------------------------------------------------------- */
1751
1752 /* can be called from any thread with lock held; @task is (transfer full) */
1753 static void
1754 send_message_with_reply_cleanup (GTask *task, gboolean remove)
1755 {
1756   GDBusConnection *connection = g_task_get_source_object (task);
1757   SendMessageData *data = g_task_get_task_data (task);
1758
1759   CONNECTION_ENSURE_LOCK (connection);
1760
1761   g_assert (!data->delivered);
1762
1763   data->delivered = TRUE;
1764
1765   if (data->timeout_source != NULL)
1766     {
1767       g_source_destroy (data->timeout_source);
1768       data->timeout_source = NULL;
1769     }
1770   if (data->cancellable_handler_id > 0)
1771     {
1772       g_cancellable_disconnect (g_task_get_cancellable (task), data->cancellable_handler_id);
1773       data->cancellable_handler_id = 0;
1774     }
1775
1776   if (remove)
1777     {
1778       gboolean removed = g_hash_table_remove (connection->map_method_serial_to_task,
1779                                               GUINT_TO_POINTER (data->serial));
1780       g_warn_if_fail (removed);
1781     }
1782
1783   g_object_unref (task);
1784 }
1785
1786 /* ---------------------------------------------------------------------------------------------------- */
1787
1788 /* Called from GDBus worker thread with lock held; @task is (transfer full). */
1789 static void
1790 send_message_data_deliver_reply_unlocked (GTask           *task,
1791                                           GDBusMessage    *reply)
1792 {
1793   SendMessageData *data = g_task_get_task_data (task);
1794
1795   if (data->delivered)
1796     goto out;
1797
1798   g_task_return_pointer (task, g_object_ref (reply), g_object_unref);
1799
1800   send_message_with_reply_cleanup (task, TRUE);
1801
1802  out:
1803   ;
1804 }
1805
1806 /* Called from a user thread, lock is not held */
1807 static void
1808 send_message_data_deliver_error (GTask      *task,
1809                                  GQuark      domain,
1810                                  gint        code,
1811                                  const char *message)
1812 {
1813   GDBusConnection *connection = g_task_get_source_object (task);
1814   SendMessageData *data = g_task_get_task_data (task);
1815
1816   CONNECTION_LOCK (connection);
1817   if (data->delivered)
1818     {
1819       CONNECTION_UNLOCK (connection);
1820       return;
1821     }
1822
1823   g_object_ref (task);
1824   send_message_with_reply_cleanup (task, TRUE);
1825   CONNECTION_UNLOCK (connection);
1826
1827   g_task_return_new_error (task, domain, code, "%s", message);
1828   g_object_unref (task);
1829 }
1830
1831 /* ---------------------------------------------------------------------------------------------------- */
1832
1833 /* Called from a user thread, lock is not held; @task is (transfer full) */
1834 static gboolean
1835 send_message_with_reply_cancelled_idle_cb (gpointer user_data)
1836 {
1837   GTask *task = user_data;
1838
1839   send_message_data_deliver_error (task, G_IO_ERROR, G_IO_ERROR_CANCELLED,
1840                                    _("Operation was cancelled"));
1841   return FALSE;
1842 }
1843
1844 /* Can be called from any thread with or without lock held */
1845 static void
1846 send_message_with_reply_cancelled_cb (GCancellable *cancellable,
1847                                       gpointer      user_data)
1848 {
1849   GTask *task = user_data;
1850   GSource *idle_source;
1851
1852   /* postpone cancellation to idle handler since we may be called directly
1853    * via g_cancellable_connect() (e.g. holding lock)
1854    */
1855   idle_source = g_idle_source_new ();
1856   g_source_set_name (idle_source, "[gio] send_message_with_reply_cancelled_idle_cb");
1857   g_task_attach_source (task, idle_source, send_message_with_reply_cancelled_idle_cb);
1858   g_source_unref (idle_source);
1859 }
1860
1861 /* ---------------------------------------------------------------------------------------------------- */
1862
1863 /* Called from a user thread, lock is not held; @task is (transfer full) */
1864 static gboolean
1865 send_message_with_reply_timeout_cb (gpointer user_data)
1866 {
1867   GTask *task = user_data;
1868
1869   send_message_data_deliver_error (task, G_IO_ERROR, G_IO_ERROR_TIMED_OUT,
1870                                    _("Timeout was reached"));
1871   return FALSE;
1872 }
1873
1874 /* ---------------------------------------------------------------------------------------------------- */
1875
1876 /* Called from a user thread, connection's lock is held */
1877 static void
1878 g_dbus_connection_send_message_with_reply_unlocked (GDBusConnection     *connection,
1879                                                     GDBusMessage        *message,
1880                                                     GDBusSendMessageFlags flags,
1881                                                     gint                 timeout_msec,
1882                                                     volatile guint32    *out_serial,
1883                                                     GCancellable        *cancellable,
1884                                                     GAsyncReadyCallback  callback,
1885                                                     gpointer             user_data)
1886 {
1887   GTask *task;
1888   SendMessageData *data;
1889   GError *error = NULL;
1890   volatile guint32 serial;
1891
1892   if (out_serial == NULL)
1893     out_serial = &serial;
1894
1895   if (timeout_msec == -1)
1896     timeout_msec = 25 * 1000;
1897
1898   data = g_slice_new0 (SendMessageData);
1899   task = g_task_new (connection, cancellable, callback, user_data);
1900   g_task_set_source_tag (task,
1901                          g_dbus_connection_send_message_with_reply_unlocked);
1902   g_task_set_task_data (task, data, (GDestroyNotify) send_message_data_free);
1903
1904   if (g_task_return_error_if_cancelled (task))
1905     {
1906       g_object_unref (task);
1907       return;
1908     }
1909
1910   if (!g_dbus_connection_send_message_unlocked (connection, message, flags, out_serial, &error))
1911     {
1912       g_task_return_error (task, error);
1913       g_object_unref (task);
1914       return;
1915     }
1916   data->serial = *out_serial;
1917
1918   if (cancellable != NULL)
1919     {
1920       data->cancellable_handler_id = g_cancellable_connect (cancellable,
1921                                                             G_CALLBACK (send_message_with_reply_cancelled_cb),
1922                                                             g_object_ref (task),
1923                                                             g_object_unref);
1924     }
1925
1926   if (timeout_msec != G_MAXINT)
1927     {
1928       data->timeout_source = g_timeout_source_new (timeout_msec);
1929       g_task_attach_source (task, data->timeout_source,
1930                             (GSourceFunc) send_message_with_reply_timeout_cb);
1931       g_source_unref (data->timeout_source);
1932     }
1933
1934   g_hash_table_insert (connection->map_method_serial_to_task,
1935                        GUINT_TO_POINTER (*out_serial),
1936                        g_steal_pointer (&task));
1937 }
1938
1939 /**
1940  * g_dbus_connection_send_message_with_reply:
1941  * @connection: a #GDBusConnection
1942  * @message: a #GDBusMessage
1943  * @flags: flags affecting how the message is sent
1944  * @timeout_msec: the timeout in milliseconds, -1 to use the default
1945  *     timeout or %G_MAXINT for no timeout
1946  * @out_serial: (out) (optional): return location for serial number assigned
1947  *     to @message when sending it or %NULL
1948  * @cancellable: (nullable): a #GCancellable or %NULL
1949  * @callback: (nullable): a #GAsyncReadyCallback to call when the request
1950  *     is satisfied or %NULL if you don't care about the result
1951  * @user_data: The data to pass to @callback
1952  *
1953  * Asynchronously sends @message to the peer represented by @connection.
1954  *
1955  * Unless @flags contain the
1956  * %G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL flag, the serial number
1957  * will be assigned by @connection and set on @message via
1958  * g_dbus_message_set_serial(). If @out_serial is not %NULL, then the
1959  * serial number used will be written to this location prior to
1960  * submitting the message to the underlying transport.
1961  *
1962  * If @connection is closed then the operation will fail with
1963  * %G_IO_ERROR_CLOSED. If @cancellable is canceled, the operation will
1964  * fail with %G_IO_ERROR_CANCELLED. If @message is not well-formed,
1965  * the operation fails with %G_IO_ERROR_INVALID_ARGUMENT.
1966  *
1967  * This is an asynchronous method. When the operation is finished, @callback
1968  * will be invoked in the 
1969  * [thread-default main context][g-main-context-push-thread-default]
1970  * of the thread you are calling this method from. You can then call
1971  * g_dbus_connection_send_message_with_reply_finish() to get the result of the operation.
1972  * See g_dbus_connection_send_message_with_reply_sync() for the synchronous version.
1973  *
1974  * Note that @message must be unlocked, unless @flags contain the
1975  * %G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL flag.
1976  *
1977  * See this [server][gdbus-server] and [client][gdbus-unix-fd-client]
1978  * for an example of how to use this low-level API to send and receive
1979  * UNIX file descriptors.
1980  *
1981  * Since: 2.26
1982  */
1983 void
1984 g_dbus_connection_send_message_with_reply (GDBusConnection       *connection,
1985                                            GDBusMessage          *message,
1986                                            GDBusSendMessageFlags  flags,
1987                                            gint                   timeout_msec,
1988                                            volatile guint32      *out_serial,
1989                                            GCancellable          *cancellable,
1990                                            GAsyncReadyCallback    callback,
1991                                            gpointer               user_data)
1992 {
1993   g_return_if_fail (G_IS_DBUS_CONNECTION (connection));
1994   g_return_if_fail (G_IS_DBUS_MESSAGE (message));
1995   g_return_if_fail ((flags & G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL) || !g_dbus_message_get_locked (message));
1996   g_return_if_fail (timeout_msec >= 0 || timeout_msec == -1);
1997
1998   CONNECTION_LOCK (connection);
1999   g_dbus_connection_send_message_with_reply_unlocked (connection,
2000                                                       message,
2001                                                       flags,
2002                                                       timeout_msec,
2003                                                       out_serial,
2004                                                       cancellable,
2005                                                       callback,
2006                                                       user_data);
2007   CONNECTION_UNLOCK (connection);
2008 }
2009
2010 /**
2011  * g_dbus_connection_send_message_with_reply_finish:
2012  * @connection: a #GDBusConnection
2013  * @res: a #GAsyncResult obtained from the #GAsyncReadyCallback passed to
2014  *     g_dbus_connection_send_message_with_reply()
2015  * @error: teturn location for error or %NULL
2016  *
2017  * Finishes an operation started with g_dbus_connection_send_message_with_reply().
2018  *
2019  * Note that @error is only set if a local in-process error
2020  * occurred. That is to say that the returned #GDBusMessage object may
2021  * be of type %G_DBUS_MESSAGE_TYPE_ERROR. Use
2022  * g_dbus_message_to_gerror() to transcode this to a #GError.
2023  *
2024  * See this [server][gdbus-server] and [client][gdbus-unix-fd-client]
2025  * for an example of how to use this low-level API to send and receive
2026  * UNIX file descriptors.
2027  *
2028  * Returns: (transfer full): a locked #GDBusMessage or %NULL if @error is set
2029  *
2030  * Since: 2.26
2031  */
2032 GDBusMessage *
2033 g_dbus_connection_send_message_with_reply_finish (GDBusConnection  *connection,
2034                                                   GAsyncResult     *res,
2035                                                   GError          **error)
2036 {
2037   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), NULL);
2038   g_return_val_if_fail (g_task_is_valid (res, connection), NULL);
2039   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
2040
2041   return g_task_propagate_pointer (G_TASK (res), error);
2042 }
2043
2044 /* ---------------------------------------------------------------------------------------------------- */
2045
2046 typedef struct
2047 {
2048   GAsyncResult *res;
2049   GMainContext *context;
2050   GMainLoop *loop;
2051 } SendMessageSyncData;
2052
2053 /* Called from a user thread, lock is not held */
2054 static void
2055 send_message_with_reply_sync_cb (GDBusConnection *connection,
2056                                  GAsyncResult    *res,
2057                                  gpointer         user_data)
2058 {
2059   SendMessageSyncData *data = user_data;
2060   data->res = g_object_ref (res);
2061   g_main_loop_quit (data->loop);
2062 }
2063
2064 /**
2065  * g_dbus_connection_send_message_with_reply_sync:
2066  * @connection: a #GDBusConnection
2067  * @message: a #GDBusMessage
2068  * @flags: flags affecting how the message is sent.
2069  * @timeout_msec: the timeout in milliseconds, -1 to use the default
2070  *     timeout or %G_MAXINT for no timeout
2071  * @out_serial: (out) (optional): return location for serial number
2072  *     assigned to @message when sending it or %NULL
2073  * @cancellable: (nullable): a #GCancellable or %NULL
2074  * @error: return location for error or %NULL
2075  *
2076  * Synchronously sends @message to the peer represented by @connection
2077  * and blocks the calling thread until a reply is received or the
2078  * timeout is reached. See g_dbus_connection_send_message_with_reply()
2079  * for the asynchronous version of this method.
2080  *
2081  * Unless @flags contain the
2082  * %G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL flag, the serial number
2083  * will be assigned by @connection and set on @message via
2084  * g_dbus_message_set_serial(). If @out_serial is not %NULL, then the
2085  * serial number used will be written to this location prior to
2086  * submitting the message to the underlying transport.
2087  *
2088  * If @connection is closed then the operation will fail with
2089  * %G_IO_ERROR_CLOSED. If @cancellable is canceled, the operation will
2090  * fail with %G_IO_ERROR_CANCELLED. If @message is not well-formed,
2091  * the operation fails with %G_IO_ERROR_INVALID_ARGUMENT.
2092  *
2093  * Note that @error is only set if a local in-process error
2094  * occurred. That is to say that the returned #GDBusMessage object may
2095  * be of type %G_DBUS_MESSAGE_TYPE_ERROR. Use
2096  * g_dbus_message_to_gerror() to transcode this to a #GError.
2097  *
2098  * See this [server][gdbus-server] and [client][gdbus-unix-fd-client]
2099  * for an example of how to use this low-level API to send and receive
2100  * UNIX file descriptors.
2101  *
2102  * Note that @message must be unlocked, unless @flags contain the
2103  * %G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL flag.
2104  *
2105  * Returns: (transfer full): a locked #GDBusMessage that is the reply
2106  *     to @message or %NULL if @error is set
2107  *
2108  * Since: 2.26
2109  */
2110 GDBusMessage *
2111 g_dbus_connection_send_message_with_reply_sync (GDBusConnection        *connection,
2112                                                 GDBusMessage           *message,
2113                                                 GDBusSendMessageFlags   flags,
2114                                                 gint                    timeout_msec,
2115                                                 volatile guint32       *out_serial,
2116                                                 GCancellable           *cancellable,
2117                                                 GError                **error)
2118 {
2119   SendMessageSyncData data;
2120   GDBusMessage *reply;
2121
2122   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), NULL);
2123   g_return_val_if_fail (G_IS_DBUS_MESSAGE (message), NULL);
2124   g_return_val_if_fail ((flags & G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL) || !g_dbus_message_get_locked (message), NULL);
2125   g_return_val_if_fail (timeout_msec >= 0 || timeout_msec == -1, NULL);
2126   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
2127
2128   data.res = NULL;
2129   data.context = g_main_context_new ();
2130   data.loop = g_main_loop_new (data.context, FALSE);
2131
2132   g_main_context_push_thread_default (data.context);
2133
2134   g_dbus_connection_send_message_with_reply (connection,
2135                                              message,
2136                                              flags,
2137                                              timeout_msec,
2138                                              out_serial,
2139                                              cancellable,
2140                                              (GAsyncReadyCallback) send_message_with_reply_sync_cb,
2141                                              &data);
2142   g_main_loop_run (data.loop);
2143   reply = g_dbus_connection_send_message_with_reply_finish (connection,
2144                                                             data.res,
2145                                                             error);
2146
2147   g_main_context_pop_thread_default (data.context);
2148
2149   g_main_context_unref (data.context);
2150   g_main_loop_unref (data.loop);
2151   if (data.res)
2152     g_object_unref (data.res);
2153
2154   return reply;
2155 }
2156
2157 /* ---------------------------------------------------------------------------------------------------- */
2158
2159 typedef struct
2160 {
2161   guint                       id;
2162   guint                       ref_count;
2163   GDBusMessageFilterFunction  filter_function;
2164   gpointer                    user_data;
2165   GDestroyNotify              user_data_free_func;
2166   GMainContext               *context;
2167 } FilterData;
2168
2169 /* requires CONNECTION_LOCK */
2170 static FilterData **
2171 copy_filter_list (GPtrArray *filters)
2172 {
2173   FilterData **copy;
2174   guint n;
2175
2176   copy = g_new (FilterData *, filters->len + 1);
2177   for (n = 0; n < filters->len; n++)
2178     {
2179       copy[n] = filters->pdata[n];
2180       copy[n]->ref_count++;
2181     }
2182   copy[n] = NULL;
2183
2184   return copy;
2185 }
2186
2187 /* requires CONNECTION_LOCK */
2188 static void
2189 free_filter_list (FilterData **filters)
2190 {
2191   guint n;
2192
2193   for (n = 0; filters[n]; n++)
2194     {
2195       filters[n]->ref_count--;
2196       if (filters[n]->ref_count == 0)
2197         {
2198           call_destroy_notify (filters[n]->context,
2199                                filters[n]->user_data_free_func,
2200                                filters[n]->user_data);
2201           g_main_context_unref (filters[n]->context);
2202           g_free (filters[n]);
2203         }
2204     }
2205   g_free (filters);
2206 }
2207
2208 /* Called in GDBusWorker's thread - we must not block - with no lock held */
2209 static void
2210 on_worker_message_received (GDBusWorker  *worker,
2211                             GDBusMessage *message,
2212                             gpointer      user_data)
2213 {
2214   GDBusConnection *connection;
2215   FilterData **filters;
2216   guint n;
2217   gboolean alive;
2218
2219   G_LOCK (message_bus_lock);
2220   alive = g_hash_table_contains (alive_connections, user_data);
2221   if (!alive)
2222     {
2223       G_UNLOCK (message_bus_lock);
2224       return;
2225     }
2226   connection = G_DBUS_CONNECTION (user_data);
2227   g_object_ref (connection);
2228   G_UNLOCK (message_bus_lock);
2229
2230   //g_debug ("in on_worker_message_received");
2231
2232   g_object_ref (message);
2233   g_dbus_message_lock (message);
2234
2235   //g_debug ("boo ref_count = %d %p %p", G_OBJECT (connection)->ref_count, connection, connection->worker);
2236
2237   /* First collect the set of callback functions */
2238   CONNECTION_LOCK (connection);
2239   filters = copy_filter_list (connection->filters);
2240   CONNECTION_UNLOCK (connection);
2241
2242   /* then call the filters in order (without holding the lock) */
2243   for (n = 0; filters[n]; n++)
2244     {
2245       message = filters[n]->filter_function (connection,
2246                                              message,
2247                                              TRUE,
2248                                              filters[n]->user_data);
2249       if (message == NULL)
2250         break;
2251       g_dbus_message_lock (message);
2252     }
2253
2254   CONNECTION_LOCK (connection);
2255   free_filter_list (filters);
2256   CONNECTION_UNLOCK (connection);
2257
2258   /* Standard dispatch unless the filter ate the message - no need to
2259    * do anything if the message was altered
2260    */
2261   if (message != NULL)
2262     {
2263       GDBusMessageType message_type;
2264
2265       message_type = g_dbus_message_get_message_type (message);
2266       if (message_type == G_DBUS_MESSAGE_TYPE_METHOD_RETURN || message_type == G_DBUS_MESSAGE_TYPE_ERROR)
2267         {
2268           guint32 reply_serial;
2269           GTask *task;
2270
2271           reply_serial = g_dbus_message_get_reply_serial (message);
2272           CONNECTION_LOCK (connection);
2273           task = g_hash_table_lookup (connection->map_method_serial_to_task,
2274                                       GUINT_TO_POINTER (reply_serial));
2275           if (task != NULL)
2276             {
2277               /* This removes @task from @map_method_serial_to_task. */
2278               //g_debug ("delivering reply/error for serial %d for %p", reply_serial, connection);
2279               send_message_data_deliver_reply_unlocked (task, message);
2280             }
2281           else
2282             {
2283               //g_debug ("message reply/error for serial %d but no SendMessageData found for %p", reply_serial, connection);
2284             }
2285           CONNECTION_UNLOCK (connection);
2286         }
2287       else if (message_type == G_DBUS_MESSAGE_TYPE_SIGNAL)
2288         {
2289           CONNECTION_LOCK (connection);
2290           distribute_signals (connection, message);
2291           CONNECTION_UNLOCK (connection);
2292         }
2293       else if (message_type == G_DBUS_MESSAGE_TYPE_METHOD_CALL)
2294         {
2295           CONNECTION_LOCK (connection);
2296           distribute_method_call (connection, message);
2297           CONNECTION_UNLOCK (connection);
2298         }
2299     }
2300
2301   if (message != NULL)
2302     g_object_unref (message);
2303   g_object_unref (connection);
2304 }
2305
2306 /* Called in GDBusWorker's thread, lock is not held */
2307 static GDBusMessage *
2308 on_worker_message_about_to_be_sent (GDBusWorker  *worker,
2309                                     GDBusMessage *message,
2310                                     gpointer      user_data)
2311 {
2312   GDBusConnection *connection;
2313   FilterData **filters;
2314   guint n;
2315   gboolean alive;
2316
2317   G_LOCK (message_bus_lock);
2318   alive = g_hash_table_contains (alive_connections, user_data);
2319   if (!alive)
2320     {
2321       G_UNLOCK (message_bus_lock);
2322       return message;
2323     }
2324   connection = G_DBUS_CONNECTION (user_data);
2325   g_object_ref (connection);
2326   G_UNLOCK (message_bus_lock);
2327
2328   //g_debug ("in on_worker_message_about_to_be_sent");
2329
2330   /* First collect the set of callback functions */
2331   CONNECTION_LOCK (connection);
2332   filters = copy_filter_list (connection->filters);
2333   CONNECTION_UNLOCK (connection);
2334
2335   /* then call the filters in order (without holding the lock) */
2336   for (n = 0; filters[n]; n++)
2337     {
2338       g_dbus_message_lock (message);
2339       message = filters[n]->filter_function (connection,
2340                                              message,
2341                                              FALSE,
2342                                              filters[n]->user_data);
2343       if (message == NULL)
2344         break;
2345     }
2346
2347   CONNECTION_LOCK (connection);
2348   free_filter_list (filters);
2349   CONNECTION_UNLOCK (connection);
2350
2351   g_object_unref (connection);
2352
2353   return message;
2354 }
2355
2356 /* called with connection lock held, in GDBusWorker thread */
2357 static gboolean
2358 cancel_method_on_close (gpointer key, gpointer value, gpointer user_data)
2359 {
2360   GTask *task = value;
2361   SendMessageData *data = g_task_get_task_data (task);
2362
2363   if (data->delivered)
2364     return FALSE;
2365
2366   g_task_return_new_error (task,
2367                            G_IO_ERROR,
2368                            G_IO_ERROR_CLOSED,
2369                            _("The connection is closed"));
2370
2371   /* Ask send_message_with_reply_cleanup not to remove the element from the
2372    * hash table - we're in the middle of a foreach; that would be unsafe.
2373    * Instead, return TRUE from this function so that it gets removed safely.
2374    */
2375   send_message_with_reply_cleanup (task, FALSE);
2376   return TRUE;
2377 }
2378
2379 /* Called in GDBusWorker's thread - we must not block - without lock held */
2380 static void
2381 on_worker_closed (GDBusWorker *worker,
2382                   gboolean     remote_peer_vanished,
2383                   GError      *error,
2384                   gpointer     user_data)
2385 {
2386   GDBusConnection *connection;
2387   gboolean alive;
2388   guint old_atomic_flags;
2389
2390   G_LOCK (message_bus_lock);
2391   alive = g_hash_table_contains (alive_connections, user_data);
2392   if (!alive)
2393     {
2394       G_UNLOCK (message_bus_lock);
2395       return;
2396     }
2397   connection = G_DBUS_CONNECTION (user_data);
2398   g_object_ref (connection);
2399   G_UNLOCK (message_bus_lock);
2400
2401   //g_debug ("in on_worker_closed: %s", error->message);
2402
2403   CONNECTION_LOCK (connection);
2404   /* Even though this is atomic, we do it inside the lock to avoid breaking
2405    * assumptions in remove_match_rule(). We'd need the lock in a moment
2406    * anyway, so, no loss.
2407    */
2408   old_atomic_flags = g_atomic_int_or (&connection->atomic_flags, FLAG_CLOSED);
2409
2410   if (!(old_atomic_flags & FLAG_CLOSED))
2411     {
2412       g_hash_table_foreach_remove (connection->map_method_serial_to_task, cancel_method_on_close, NULL);
2413       schedule_closed_unlocked (connection, remote_peer_vanished, error);
2414     }
2415   CONNECTION_UNLOCK (connection);
2416
2417   g_object_unref (connection);
2418 }
2419
2420 /* ---------------------------------------------------------------------------------------------------- */
2421
2422 /* Determines the biggest set of capabilities we can support on this
2423  * connection.
2424  *
2425  * Called with the init_lock held.
2426  */
2427 static GDBusCapabilityFlags
2428 get_offered_capabilities_max (GDBusConnection *connection)
2429 {
2430       GDBusCapabilityFlags ret;
2431       ret = G_DBUS_CAPABILITY_FLAGS_NONE;
2432 #ifdef G_OS_UNIX
2433       if (G_IS_UNIX_CONNECTION (connection->stream))
2434         ret |= G_DBUS_CAPABILITY_FLAGS_UNIX_FD_PASSING;
2435 #endif
2436       return ret;
2437 }
2438
2439 /* Called in a user thread, lock is not held */
2440 static gboolean
2441 initable_init (GInitable     *initable,
2442                GCancellable  *cancellable,
2443                GError       **error)
2444 {
2445   GDBusConnection *connection = G_DBUS_CONNECTION (initable);
2446   gboolean ret;
2447
2448   /* This method needs to be idempotent to work with the singleton
2449    * pattern. See the docs for g_initable_init(). We implement this by
2450    * locking.
2451    *
2452    * Unfortunately we can't use the main lock since the on_worker_*()
2453    * callbacks above needs the lock during initialization (for message
2454    * bus connections we do a synchronous Hello() call on the bus).
2455    */
2456   g_mutex_lock (&connection->init_lock);
2457
2458   ret = FALSE;
2459
2460   /* Make this a no-op if we're already initialized (successfully or
2461    * unsuccessfully)
2462    */
2463   if ((g_atomic_int_get (&connection->atomic_flags) & FLAG_INITIALIZED))
2464     {
2465       ret = (connection->initialization_error == NULL);
2466       goto out;
2467     }
2468
2469   /* Because of init_lock, we can't get here twice in different threads */
2470   g_assert (connection->initialization_error == NULL);
2471
2472   /* The user can pass multiple (but mutally exclusive) construct
2473    * properties:
2474    *
2475    *  - stream (of type GIOStream)
2476    *  - address (of type gchar*)
2477    *
2478    * At the end of the day we end up with a non-NULL GIOStream
2479    * object in connection->stream.
2480    */
2481   if (connection->address != NULL)
2482     {
2483       g_assert (connection->stream == NULL);
2484
2485       if ((connection->flags & G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_SERVER) ||
2486           (connection->flags & G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_ALLOW_ANONYMOUS))
2487         {
2488           g_set_error_literal (&connection->initialization_error,
2489                                G_IO_ERROR,
2490                                G_IO_ERROR_INVALID_ARGUMENT,
2491                                _("Unsupported flags encountered when constructing a client-side connection"));
2492           goto out;
2493         }
2494
2495       connection->stream = g_dbus_address_get_stream_sync (connection->address,
2496                                                            NULL, /* TODO: out_guid */
2497                                                            cancellable,
2498                                                            &connection->initialization_error);
2499       if (connection->stream == NULL)
2500         goto out;
2501     }
2502   else if (connection->stream != NULL)
2503     {
2504       /* nothing to do */
2505     }
2506   else
2507     {
2508       g_assert_not_reached ();
2509     }
2510
2511   /* Authenticate the connection */
2512   if (connection->flags & G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_SERVER)
2513     {
2514       g_assert (!(connection->flags & G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_CLIENT));
2515       g_assert (connection->guid != NULL);
2516       connection->auth = _g_dbus_auth_new (connection->stream);
2517       if (!_g_dbus_auth_run_server (connection->auth,
2518                                     connection->authentication_observer,
2519                                     connection->guid,
2520                                     (connection->flags & G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_ALLOW_ANONYMOUS),
2521                                     get_offered_capabilities_max (connection),
2522                                     &connection->capabilities,
2523                                     &connection->credentials,
2524                                     cancellable,
2525                                     &connection->initialization_error))
2526         goto out;
2527     }
2528   else if (connection->flags & G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_CLIENT)
2529     {
2530       g_assert (!(connection->flags & G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_SERVER));
2531       g_assert (connection->guid == NULL);
2532       connection->auth = _g_dbus_auth_new (connection->stream);
2533       connection->guid = _g_dbus_auth_run_client (connection->auth,
2534                                                   connection->authentication_observer,
2535                                                   get_offered_capabilities_max (connection),
2536                                                   &connection->capabilities,
2537                                                   cancellable,
2538                                                   &connection->initialization_error);
2539       if (connection->guid == NULL)
2540         goto out;
2541     }
2542
2543   if (connection->authentication_observer != NULL)
2544     {
2545       g_object_unref (connection->authentication_observer);
2546       connection->authentication_observer = NULL;
2547     }
2548
2549   //g_output_stream_flush (G_SOCKET_CONNECTION (connection->stream)
2550
2551   //g_debug ("haz unix fd passing powers: %d", connection->capabilities & G_DBUS_CAPABILITY_FLAGS_UNIX_FD_PASSING);
2552
2553 #ifdef G_OS_UNIX
2554   /* We want all IO operations to be non-blocking since they happen in
2555    * the worker thread which is shared by _all_ connections.
2556    */
2557   if (G_IS_SOCKET_CONNECTION (connection->stream))
2558     {
2559       g_socket_set_blocking (g_socket_connection_get_socket (G_SOCKET_CONNECTION (connection->stream)), FALSE);
2560     }
2561 #endif
2562
2563   G_LOCK (message_bus_lock);
2564   if (alive_connections == NULL)
2565     alive_connections = g_hash_table_new (g_direct_hash, g_direct_equal);
2566   g_hash_table_add (alive_connections, connection);
2567   G_UNLOCK (message_bus_lock);
2568
2569   connection->worker = _g_dbus_worker_new (connection->stream,
2570                                            connection->capabilities,
2571                                            ((connection->flags & G_DBUS_CONNECTION_FLAGS_DELAY_MESSAGE_PROCESSING) != 0),
2572                                            on_worker_message_received,
2573                                            on_worker_message_about_to_be_sent,
2574                                            on_worker_closed,
2575                                            connection);
2576
2577   /* if a bus connection, call org.freedesktop.DBus.Hello - this is how we're getting a name */
2578   if (connection->flags & G_DBUS_CONNECTION_FLAGS_MESSAGE_BUS_CONNECTION)
2579     {
2580       GVariant *hello_result;
2581
2582       /* we could lift this restriction by adding code in gdbusprivate.c */
2583       if (connection->flags & G_DBUS_CONNECTION_FLAGS_DELAY_MESSAGE_PROCESSING)
2584         {
2585           g_set_error_literal (&connection->initialization_error,
2586                                G_IO_ERROR,
2587                                G_IO_ERROR_FAILED,
2588                                "Cannot use DELAY_MESSAGE_PROCESSING with MESSAGE_BUS_CONNECTION");
2589           goto out;
2590         }
2591
2592       hello_result = g_dbus_connection_call_sync (connection,
2593                                                   "org.freedesktop.DBus", /* name */
2594                                                   "/org/freedesktop/DBus", /* path */
2595                                                   "org.freedesktop.DBus", /* interface */
2596                                                   "Hello",
2597                                                   NULL, /* parameters */
2598                                                   G_VARIANT_TYPE ("(s)"),
2599                                                   CALL_FLAGS_INITIALIZING,
2600                                                   -1,
2601                                                   NULL, /* TODO: cancellable */
2602                                                   &connection->initialization_error);
2603       if (hello_result == NULL)
2604         goto out;
2605
2606       g_variant_get (hello_result, "(s)", &connection->bus_unique_name);
2607       g_variant_unref (hello_result);
2608       //g_debug ("unique name is '%s'", connection->bus_unique_name);
2609     }
2610
2611   ret = TRUE;
2612  out:
2613   if (!ret)
2614     {
2615       g_assert (connection->initialization_error != NULL);
2616       g_propagate_error (error, g_error_copy (connection->initialization_error));
2617     }
2618
2619   g_atomic_int_or (&connection->atomic_flags, FLAG_INITIALIZED);
2620   g_mutex_unlock (&connection->init_lock);
2621
2622   return ret;
2623 }
2624
2625 static void
2626 initable_iface_init (GInitableIface *initable_iface)
2627 {
2628   initable_iface->init = initable_init;
2629 }
2630
2631 /* ---------------------------------------------------------------------------------------------------- */
2632
2633 static void
2634 async_initable_iface_init (GAsyncInitableIface *async_initable_iface)
2635 {
2636   /* Use default */
2637 }
2638
2639 /* ---------------------------------------------------------------------------------------------------- */
2640
2641 /**
2642  * g_dbus_connection_new:
2643  * @stream: a #GIOStream
2644  * @guid: (nullable): the GUID to use if a authenticating as a server or %NULL
2645  * @flags: flags describing how to make the connection
2646  * @observer: (nullable): a #GDBusAuthObserver or %NULL
2647  * @cancellable: (nullable): a #GCancellable or %NULL
2648  * @callback: a #GAsyncReadyCallback to call when the request is satisfied
2649  * @user_data: the data to pass to @callback
2650  *
2651  * Asynchronously sets up a D-Bus connection for exchanging D-Bus messages
2652  * with the end represented by @stream.
2653  *
2654  * If @stream is a #GSocketConnection, then the corresponding #GSocket
2655  * will be put into non-blocking mode.
2656  *
2657  * The D-Bus connection will interact with @stream from a worker thread.
2658  * As a result, the caller should not interact with @stream after this
2659  * method has been called, except by calling g_object_unref() on it.
2660  *
2661  * If @observer is not %NULL it may be used to control the
2662  * authentication process.
2663  *
2664  * When the operation is finished, @callback will be invoked. You can
2665  * then call g_dbus_connection_new_finish() to get the result of the
2666  * operation.
2667  *
2668  * This is a asynchronous failable constructor. See
2669  * g_dbus_connection_new_sync() for the synchronous
2670  * version.
2671  *
2672  * Since: 2.26
2673  */
2674 void
2675 g_dbus_connection_new (GIOStream            *stream,
2676                        const gchar          *guid,
2677                        GDBusConnectionFlags  flags,
2678                        GDBusAuthObserver    *observer,
2679                        GCancellable         *cancellable,
2680                        GAsyncReadyCallback   callback,
2681                        gpointer              user_data)
2682 {
2683   _g_dbus_initialize ();
2684
2685   g_return_if_fail (G_IS_IO_STREAM (stream));
2686
2687   g_async_initable_new_async (G_TYPE_DBUS_CONNECTION,
2688                               G_PRIORITY_DEFAULT,
2689                               cancellable,
2690                               callback,
2691                               user_data,
2692                               "stream", stream,
2693                               "guid", guid,
2694                               "flags", flags,
2695                               "authentication-observer", observer,
2696                               NULL);
2697 }
2698
2699 /**
2700  * g_dbus_connection_new_finish:
2701  * @res: a #GAsyncResult obtained from the #GAsyncReadyCallback
2702  *     passed to g_dbus_connection_new().
2703  * @error: return location for error or %NULL
2704  *
2705  * Finishes an operation started with g_dbus_connection_new().
2706  *
2707  * Returns: a #GDBusConnection or %NULL if @error is set. Free
2708  *     with g_object_unref().
2709  *
2710  * Since: 2.26
2711  */
2712 GDBusConnection *
2713 g_dbus_connection_new_finish (GAsyncResult  *res,
2714                               GError       **error)
2715 {
2716   GObject *object;
2717   GObject *source_object;
2718
2719   g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
2720   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
2721
2722   source_object = g_async_result_get_source_object (res);
2723   g_assert (source_object != NULL);
2724   object = g_async_initable_new_finish (G_ASYNC_INITABLE (source_object),
2725                                         res,
2726                                         error);
2727   g_object_unref (source_object);
2728   if (object != NULL)
2729     return G_DBUS_CONNECTION (object);
2730   else
2731     return NULL;
2732 }
2733
2734 /**
2735  * g_dbus_connection_new_sync:
2736  * @stream: a #GIOStream
2737  * @guid: (nullable): the GUID to use if a authenticating as a server or %NULL
2738  * @flags: flags describing how to make the connection
2739  * @observer: (nullable): a #GDBusAuthObserver or %NULL
2740  * @cancellable: (nullable): a #GCancellable or %NULL
2741  * @error: return location for error or %NULL
2742  *
2743  * Synchronously sets up a D-Bus connection for exchanging D-Bus messages
2744  * with the end represented by @stream.
2745  *
2746  * If @stream is a #GSocketConnection, then the corresponding #GSocket
2747  * will be put into non-blocking mode.
2748  *
2749  * The D-Bus connection will interact with @stream from a worker thread.
2750  * As a result, the caller should not interact with @stream after this
2751  * method has been called, except by calling g_object_unref() on it.
2752  *
2753  * If @observer is not %NULL it may be used to control the
2754  * authentication process.
2755  *
2756  * This is a synchronous failable constructor. See
2757  * g_dbus_connection_new() for the asynchronous version.
2758  *
2759  * Returns: a #GDBusConnection or %NULL if @error is set. Free with g_object_unref().
2760  *
2761  * Since: 2.26
2762  */
2763 GDBusConnection *
2764 g_dbus_connection_new_sync (GIOStream             *stream,
2765                             const gchar           *guid,
2766                             GDBusConnectionFlags   flags,
2767                             GDBusAuthObserver     *observer,
2768                             GCancellable          *cancellable,
2769                             GError               **error)
2770 {
2771   _g_dbus_initialize ();
2772   g_return_val_if_fail (G_IS_IO_STREAM (stream), NULL);
2773   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
2774   return g_initable_new (G_TYPE_DBUS_CONNECTION,
2775                          cancellable,
2776                          error,
2777                          "stream", stream,
2778                          "guid", guid,
2779                          "flags", flags,
2780                          "authentication-observer", observer,
2781                          NULL);
2782 }
2783
2784 /* ---------------------------------------------------------------------------------------------------- */
2785
2786 /**
2787  * g_dbus_connection_new_for_address:
2788  * @address: a D-Bus address
2789  * @flags: flags describing how to make the connection
2790  * @observer: (nullable): a #GDBusAuthObserver or %NULL
2791  * @cancellable: (nullable): a #GCancellable or %NULL
2792  * @callback: a #GAsyncReadyCallback to call when the request is satisfied
2793  * @user_data: the data to pass to @callback
2794  *
2795  * Asynchronously connects and sets up a D-Bus client connection for
2796  * exchanging D-Bus messages with an endpoint specified by @address
2797  * which must be in the
2798  * [D-Bus address format](https://dbus.freedesktop.org/doc/dbus-specification.html#addresses).
2799  *
2800  * This constructor can only be used to initiate client-side
2801  * connections - use g_dbus_connection_new() if you need to act as the
2802  * server. In particular, @flags cannot contain the
2803  * %G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_SERVER or
2804  * %G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_ALLOW_ANONYMOUS flags.
2805  *
2806  * When the operation is finished, @callback will be invoked. You can
2807  * then call g_dbus_connection_new_finish() to get the result of the
2808  * operation.
2809  *
2810  * If @observer is not %NULL it may be used to control the
2811  * authentication process.
2812  *
2813  * This is a asynchronous failable constructor. See
2814  * g_dbus_connection_new_for_address_sync() for the synchronous
2815  * version.
2816  *
2817  * Since: 2.26
2818  */
2819 void
2820 g_dbus_connection_new_for_address (const gchar          *address,
2821                                    GDBusConnectionFlags  flags,
2822                                    GDBusAuthObserver    *observer,
2823                                    GCancellable         *cancellable,
2824                                    GAsyncReadyCallback   callback,
2825                                    gpointer              user_data)
2826 {
2827   _g_dbus_initialize ();
2828
2829   g_return_if_fail (address != NULL);
2830
2831   g_async_initable_new_async (G_TYPE_DBUS_CONNECTION,
2832                               G_PRIORITY_DEFAULT,
2833                               cancellable,
2834                               callback,
2835                               user_data,
2836                               "address", address,
2837                               "flags", flags,
2838                               "authentication-observer", observer,
2839                               NULL);
2840 }
2841
2842 /**
2843  * g_dbus_connection_new_for_address_finish:
2844  * @res: a #GAsyncResult obtained from the #GAsyncReadyCallback passed
2845  *     to g_dbus_connection_new()
2846  * @error: return location for error or %NULL
2847  *
2848  * Finishes an operation started with g_dbus_connection_new_for_address().
2849  *
2850  * Returns: a #GDBusConnection or %NULL if @error is set. Free with
2851  *     g_object_unref().
2852  *
2853  * Since: 2.26
2854  */
2855 GDBusConnection *
2856 g_dbus_connection_new_for_address_finish (GAsyncResult  *res,
2857                                           GError       **error)
2858 {
2859   GObject *object;
2860   GObject *source_object;
2861
2862   g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
2863   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
2864
2865   source_object = g_async_result_get_source_object (res);
2866   g_assert (source_object != NULL);
2867   object = g_async_initable_new_finish (G_ASYNC_INITABLE (source_object),
2868                                         res,
2869                                         error);
2870   g_object_unref (source_object);
2871   if (object != NULL)
2872     return G_DBUS_CONNECTION (object);
2873   else
2874     return NULL;
2875 }
2876
2877 /**
2878  * g_dbus_connection_new_for_address_sync:
2879  * @address: a D-Bus address
2880  * @flags: flags describing how to make the connection
2881  * @observer: (nullable): a #GDBusAuthObserver or %NULL
2882  * @cancellable: (nullable): a #GCancellable or %NULL
2883  * @error: return location for error or %NULL
2884  *
2885  * Synchronously connects and sets up a D-Bus client connection for
2886  * exchanging D-Bus messages with an endpoint specified by @address
2887  * which must be in the
2888  * [D-Bus address format](https://dbus.freedesktop.org/doc/dbus-specification.html#addresses).
2889  *
2890  * This constructor can only be used to initiate client-side
2891  * connections - use g_dbus_connection_new_sync() if you need to act
2892  * as the server. In particular, @flags cannot contain the
2893  * %G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_SERVER or
2894  * %G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_ALLOW_ANONYMOUS flags.
2895  *
2896  * This is a synchronous failable constructor. See
2897  * g_dbus_connection_new_for_address() for the asynchronous version.
2898  *
2899  * If @observer is not %NULL it may be used to control the
2900  * authentication process.
2901  *
2902  * Returns: a #GDBusConnection or %NULL if @error is set. Free with
2903  *     g_object_unref().
2904  *
2905  * Since: 2.26
2906  */
2907 GDBusConnection *
2908 g_dbus_connection_new_for_address_sync (const gchar           *address,
2909                                         GDBusConnectionFlags   flags,
2910                                         GDBusAuthObserver     *observer,
2911                                         GCancellable          *cancellable,
2912                                         GError               **error)
2913 {
2914   _g_dbus_initialize ();
2915
2916   g_return_val_if_fail (address != NULL, NULL);
2917   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
2918   return g_initable_new (G_TYPE_DBUS_CONNECTION,
2919                          cancellable,
2920                          error,
2921                          "address", address,
2922                          "flags", flags,
2923                          "authentication-observer", observer,
2924                          NULL);
2925 }
2926
2927 /* ---------------------------------------------------------------------------------------------------- */
2928
2929 /**
2930  * g_dbus_connection_set_exit_on_close:
2931  * @connection: a #GDBusConnection
2932  * @exit_on_close: whether the process should be terminated
2933  *     when @connection is closed by the remote peer
2934  *
2935  * Sets whether the process should be terminated when @connection is
2936  * closed by the remote peer. See #GDBusConnection:exit-on-close for
2937  * more details.
2938  *
2939  * Note that this function should be used with care. Most modern UNIX
2940  * desktops tie the notion of a user session the session bus, and expect
2941  * all of a users applications to quit when their bus connection goes away.
2942  * If you are setting @exit_on_close to %FALSE for the shared session
2943  * bus connection, you should make sure that your application exits
2944  * when the user session ends.
2945  *
2946  * Since: 2.26
2947  */
2948 void
2949 g_dbus_connection_set_exit_on_close (GDBusConnection *connection,
2950                                      gboolean         exit_on_close)
2951 {
2952   g_return_if_fail (G_IS_DBUS_CONNECTION (connection));
2953
2954   if (exit_on_close)
2955     g_atomic_int_or (&connection->atomic_flags, FLAG_EXIT_ON_CLOSE);
2956   else
2957     g_atomic_int_and (&connection->atomic_flags, ~FLAG_EXIT_ON_CLOSE);
2958
2959 }
2960
2961 /**
2962  * g_dbus_connection_get_exit_on_close:
2963  * @connection: a #GDBusConnection
2964  *
2965  * Gets whether the process is terminated when @connection is
2966  * closed by the remote peer. See
2967  * #GDBusConnection:exit-on-close for more details.
2968  *
2969  * Returns: whether the process is terminated when @connection is
2970  *     closed by the remote peer
2971  *
2972  * Since: 2.26
2973  */
2974 gboolean
2975 g_dbus_connection_get_exit_on_close (GDBusConnection *connection)
2976 {
2977   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), FALSE);
2978
2979   if (g_atomic_int_get (&connection->atomic_flags) & FLAG_EXIT_ON_CLOSE)
2980     return TRUE;
2981   else
2982     return FALSE;
2983 }
2984
2985 /**
2986  * g_dbus_connection_get_guid:
2987  * @connection: a #GDBusConnection
2988  *
2989  * The GUID of the peer performing the role of server when
2990  * authenticating. See #GDBusConnection:guid for more details.
2991  *
2992  * Returns: The GUID. Do not free this string, it is owned by
2993  *     @connection.
2994  *
2995  * Since: 2.26
2996  */
2997 const gchar *
2998 g_dbus_connection_get_guid (GDBusConnection *connection)
2999 {
3000   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), NULL);
3001   return connection->guid;
3002 }
3003
3004 /**
3005  * g_dbus_connection_get_unique_name:
3006  * @connection: a #GDBusConnection
3007  *
3008  * Gets the unique name of @connection as assigned by the message
3009  * bus. This can also be used to figure out if @connection is a
3010  * message bus connection.
3011  *
3012  * Returns: the unique name or %NULL if @connection is not a message
3013  *     bus connection. Do not free this string, it is owned by
3014  *     @connection.
3015  *
3016  * Since: 2.26
3017  */
3018 const gchar *
3019 g_dbus_connection_get_unique_name (GDBusConnection *connection)
3020 {
3021   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), NULL);
3022
3023   /* do not use g_return_val_if_fail(), we want the memory barrier */
3024   if (!check_initialized (connection))
3025     return NULL;
3026
3027   return connection->bus_unique_name;
3028 }
3029
3030 /**
3031  * g_dbus_connection_get_peer_credentials:
3032  * @connection: a #GDBusConnection
3033  *
3034  * Gets the credentials of the authenticated peer. This will always
3035  * return %NULL unless @connection acted as a server
3036  * (e.g. %G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_SERVER was passed)
3037  * when set up and the client passed credentials as part of the
3038  * authentication process.
3039  *
3040  * In a message bus setup, the message bus is always the server and
3041  * each application is a client. So this method will always return
3042  * %NULL for message bus clients.
3043  *
3044  * Returns: (transfer none) (nullable): a #GCredentials or %NULL if not
3045  *     available. Do not free this object, it is owned by @connection.
3046  *
3047  * Since: 2.26
3048  */
3049 GCredentials *
3050 g_dbus_connection_get_peer_credentials (GDBusConnection *connection)
3051 {
3052   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), NULL);
3053
3054   /* do not use g_return_val_if_fail(), we want the memory barrier */
3055   if (!check_initialized (connection))
3056     return NULL;
3057
3058   return connection->credentials;
3059 }
3060
3061 /* ---------------------------------------------------------------------------------------------------- */
3062
3063 static volatile guint _global_filter_id = 1;
3064
3065 /**
3066  * g_dbus_connection_add_filter:
3067  * @connection: a #GDBusConnection
3068  * @filter_function: a filter function
3069  * @user_data: user data to pass to @filter_function
3070  * @user_data_free_func: function to free @user_data with when filter
3071  *     is removed or %NULL
3072  *
3073  * Adds a message filter. Filters are handlers that are run on all
3074  * incoming and outgoing messages, prior to standard dispatch. Filters
3075  * are run in the order that they were added.  The same handler can be
3076  * added as a filter more than once, in which case it will be run more
3077  * than once.  Filters added during a filter callback won't be run on
3078  * the message being processed. Filter functions are allowed to modify
3079  * and even drop messages.
3080  *
3081  * Note that filters are run in a dedicated message handling thread so
3082  * they can't block and, generally, can't do anything but signal a
3083  * worker thread. Also note that filters are rarely needed - use API
3084  * such as g_dbus_connection_send_message_with_reply(),
3085  * g_dbus_connection_signal_subscribe() or g_dbus_connection_call() instead.
3086  *
3087  * If a filter consumes an incoming message the message is not
3088  * dispatched anywhere else - not even the standard dispatch machinery
3089  * (that API such as g_dbus_connection_signal_subscribe() and
3090  * g_dbus_connection_send_message_with_reply() relies on) will see the
3091  * message. Similary, if a filter consumes an outgoing message, the
3092  * message will not be sent to the other peer.
3093  *
3094  * If @user_data_free_func is non-%NULL, it will be called (in the
3095  * thread-default main context of the thread you are calling this
3096  * method from) at some point after @user_data is no longer
3097  * needed. (It is not guaranteed to be called synchronously when the
3098  * filter is removed, and may be called after @connection has been
3099  * destroyed.)
3100  *
3101  * Returns: a filter identifier that can be used with
3102  *     g_dbus_connection_remove_filter()
3103  *
3104  * Since: 2.26
3105  */
3106 guint
3107 g_dbus_connection_add_filter (GDBusConnection            *connection,
3108                               GDBusMessageFilterFunction  filter_function,
3109                               gpointer                    user_data,
3110                               GDestroyNotify              user_data_free_func)
3111 {
3112   FilterData *data;
3113
3114   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), 0);
3115   g_return_val_if_fail (filter_function != NULL, 0);
3116   g_return_val_if_fail (check_initialized (connection), 0);
3117
3118   CONNECTION_LOCK (connection);
3119   data = g_new0 (FilterData, 1);
3120   data->id = g_atomic_int_add (&_global_filter_id, 1); /* TODO: overflow etc. */
3121   data->ref_count = 1;
3122   data->filter_function = filter_function;
3123   data->user_data = user_data;
3124   data->user_data_free_func = user_data_free_func;
3125   data->context = g_main_context_ref_thread_default ();
3126   g_ptr_array_add (connection->filters, data);
3127   CONNECTION_UNLOCK (connection);
3128
3129   return data->id;
3130 }
3131
3132 /* only called from finalize(), removes all filters */
3133 static void
3134 purge_all_filters (GDBusConnection *connection)
3135 {
3136   guint n;
3137   for (n = 0; n < connection->filters->len; n++)
3138     {
3139       FilterData *data = connection->filters->pdata[n];
3140
3141       call_destroy_notify (data->context,
3142                            data->user_data_free_func,
3143                            data->user_data);
3144       g_main_context_unref (data->context);
3145       g_free (data);
3146     }
3147 }
3148
3149 /**
3150  * g_dbus_connection_remove_filter:
3151  * @connection: a #GDBusConnection
3152  * @filter_id: an identifier obtained from g_dbus_connection_add_filter()
3153  *
3154  * Removes a filter.
3155  *
3156  * Note that since filters run in a different thread, there is a race
3157  * condition where it is possible that the filter will be running even
3158  * after calling g_dbus_connection_remove_filter(), so you cannot just
3159  * free data that the filter might be using. Instead, you should pass
3160  * a #GDestroyNotify to g_dbus_connection_add_filter(), which will be
3161  * called when it is guaranteed that the data is no longer needed.
3162  *
3163  * Since: 2.26
3164  */
3165 void
3166 g_dbus_connection_remove_filter (GDBusConnection *connection,
3167                                  guint            filter_id)
3168 {
3169   guint n;
3170   gboolean found;
3171   FilterData *to_destroy;
3172
3173   g_return_if_fail (G_IS_DBUS_CONNECTION (connection));
3174   g_return_if_fail (check_initialized (connection));
3175
3176   CONNECTION_LOCK (connection);
3177   found = FALSE;
3178   to_destroy = NULL;
3179   for (n = 0; n < connection->filters->len; n++)
3180     {
3181       FilterData *data = connection->filters->pdata[n];
3182       if (data->id == filter_id)
3183         {
3184           found = TRUE;
3185           g_ptr_array_remove_index (connection->filters, n);
3186           data->ref_count--;
3187           if (data->ref_count == 0)
3188             to_destroy = data;
3189           break;
3190         }
3191     }
3192   CONNECTION_UNLOCK (connection);
3193
3194   /* do free without holding lock */
3195   if (to_destroy != NULL)
3196     {
3197       if (to_destroy->user_data_free_func != NULL)
3198         to_destroy->user_data_free_func (to_destroy->user_data);
3199       g_main_context_unref (to_destroy->context);
3200       g_free (to_destroy);
3201     }
3202   else if (!found)
3203     {
3204       g_warning ("g_dbus_connection_remove_filter: No filter found for filter_id %d", filter_id);
3205     }
3206 }
3207
3208 /* ---------------------------------------------------------------------------------------------------- */
3209
3210 typedef struct
3211 {
3212   gchar *rule;
3213   gchar *sender;
3214   gchar *sender_unique_name; /* if sender is unique or org.freedesktop.DBus, then that name... otherwise blank */
3215   gchar *interface_name;
3216   gchar *member;
3217   gchar *object_path;
3218   gchar *arg0;
3219   GDBusSignalFlags flags;
3220   GArray *subscribers;
3221 } SignalData;
3222
3223 typedef struct
3224 {
3225   GDBusSignalCallback callback;
3226   gpointer user_data;
3227   GDestroyNotify user_data_free_func;
3228   guint id;
3229   GMainContext *context;
3230 } SignalSubscriber;
3231
3232 static void
3233 signal_data_free (SignalData *signal_data)
3234 {
3235   g_free (signal_data->rule);
3236   g_free (signal_data->sender);
3237   g_free (signal_data->sender_unique_name);
3238   g_free (signal_data->interface_name);
3239   g_free (signal_data->member);
3240   g_free (signal_data->object_path);
3241   g_free (signal_data->arg0);
3242   g_array_free (signal_data->subscribers, TRUE);
3243   g_free (signal_data);
3244 }
3245
3246 static gchar *
3247 args_to_rule (const gchar      *sender,
3248               const gchar      *interface_name,
3249               const gchar      *member,
3250               const gchar      *object_path,
3251               const gchar      *arg0,
3252               GDBusSignalFlags  flags)
3253 {
3254   GString *rule;
3255
3256   rule = g_string_new ("type='signal'");
3257   if (flags & G_DBUS_SIGNAL_FLAGS_NO_MATCH_RULE)
3258     g_string_prepend_c (rule, '-');
3259   if (sender != NULL)
3260     g_string_append_printf (rule, ",sender='%s'", sender);
3261   if (interface_name != NULL)
3262     g_string_append_printf (rule, ",interface='%s'", interface_name);
3263   if (member != NULL)
3264     g_string_append_printf (rule, ",member='%s'", member);
3265   if (object_path != NULL)
3266     g_string_append_printf (rule, ",path='%s'", object_path);
3267
3268   if (arg0 != NULL)
3269     {
3270       if (flags & G_DBUS_SIGNAL_FLAGS_MATCH_ARG0_PATH)
3271         g_string_append_printf (rule, ",arg0path='%s'", arg0);
3272       else if (flags & G_DBUS_SIGNAL_FLAGS_MATCH_ARG0_NAMESPACE)
3273         g_string_append_printf (rule, ",arg0namespace='%s'", arg0);
3274       else
3275         g_string_append_printf (rule, ",arg0='%s'", arg0);
3276     }
3277
3278   return g_string_free (rule, FALSE);
3279 }
3280
3281 static volatile guint _global_subscriber_id = 1;
3282 static volatile guint _global_registration_id = 1;
3283 static volatile guint _global_subtree_registration_id = 1;
3284
3285 /* ---------------------------------------------------------------------------------------------------- */
3286
3287 /* Called in a user thread, lock is held */
3288 static void
3289 add_match_rule (GDBusConnection *connection,
3290                 const gchar     *match_rule)
3291 {
3292   GError *error;
3293   GDBusMessage *message;
3294
3295   if (match_rule[0] == '-')
3296     return;
3297
3298   message = g_dbus_message_new_method_call ("org.freedesktop.DBus", /* name */
3299                                             "/org/freedesktop/DBus", /* path */
3300                                             "org.freedesktop.DBus", /* interface */
3301                                             "AddMatch");
3302   g_dbus_message_set_body (message, g_variant_new ("(s)", match_rule));
3303   error = NULL;
3304   if (!g_dbus_connection_send_message_unlocked (connection,
3305                                                 message,
3306                                                 G_DBUS_SEND_MESSAGE_FLAGS_NONE,
3307                                                 NULL,
3308                                                 &error))
3309     {
3310       g_critical ("Error while sending AddMatch() message: %s", error->message);
3311       g_error_free (error);
3312     }
3313   g_object_unref (message);
3314 }
3315
3316 /* ---------------------------------------------------------------------------------------------------- */
3317
3318 /* Called in a user thread, lock is held */
3319 static void
3320 remove_match_rule (GDBusConnection *connection,
3321                    const gchar     *match_rule)
3322 {
3323   GError *error;
3324   GDBusMessage *message;
3325
3326   if (match_rule[0] == '-')
3327     return;
3328
3329   message = g_dbus_message_new_method_call ("org.freedesktop.DBus", /* name */
3330                                             "/org/freedesktop/DBus", /* path */
3331                                             "org.freedesktop.DBus", /* interface */
3332                                             "RemoveMatch");
3333   g_dbus_message_set_body (message, g_variant_new ("(s)", match_rule));
3334
3335   error = NULL;
3336   if (!g_dbus_connection_send_message_unlocked (connection,
3337                                                 message,
3338                                                 G_DBUS_SEND_MESSAGE_FLAGS_NONE,
3339                                                 NULL,
3340                                                 &error))
3341     {
3342       /* If we could get G_IO_ERROR_CLOSED here, it wouldn't be reasonable to
3343        * critical; but we're holding the lock, and our caller checked whether
3344        * we were already closed, so we can't get that error.
3345        */
3346       g_critical ("Error while sending RemoveMatch() message: %s", error->message);
3347       g_error_free (error);
3348     }
3349   g_object_unref (message);
3350 }
3351
3352 /* ---------------------------------------------------------------------------------------------------- */
3353
3354 static gboolean
3355 is_signal_data_for_name_lost_or_acquired (SignalData *signal_data)
3356 {
3357   return g_strcmp0 (signal_data->sender_unique_name, "org.freedesktop.DBus") == 0 &&
3358          g_strcmp0 (signal_data->interface_name, "org.freedesktop.DBus") == 0 &&
3359          g_strcmp0 (signal_data->object_path, "/org/freedesktop/DBus") == 0 &&
3360          (g_strcmp0 (signal_data->member, "NameLost") == 0 ||
3361           g_strcmp0 (signal_data->member, "NameAcquired") == 0);
3362 }
3363
3364 /* ---------------------------------------------------------------------------------------------------- */
3365
3366 /**
3367  * g_dbus_connection_signal_subscribe:
3368  * @connection: a #GDBusConnection
3369  * @sender: (nullable): sender name to match on (unique or well-known name)
3370  *     or %NULL to listen from all senders
3371  * @interface_name: (nullable): D-Bus interface name to match on or %NULL to
3372  *     match on all interfaces
3373  * @member: (nullable): D-Bus signal name to match on or %NULL to match on
3374  *     all signals
3375  * @object_path: (nullable): object path to match on or %NULL to match on
3376  *     all object paths
3377  * @arg0: (nullable): contents of first string argument to match on or %NULL
3378  *     to match on all kinds of arguments
3379  * @flags: #GDBusSignalFlags describing how arg0 is used in subscribing to the
3380  *     signal
3381  * @callback: callback to invoke when there is a signal matching the requested data
3382  * @user_data: user data to pass to @callback
3383  * @user_data_free_func: (nullable): function to free @user_data with when
3384  *     subscription is removed or %NULL
3385  *
3386  * Subscribes to signals on @connection and invokes @callback with a whenever
3387  * the signal is received. Note that @callback will be invoked in the 
3388  * [thread-default main context][g-main-context-push-thread-default]
3389  * of the thread you are calling this method from.
3390  *
3391  * If @connection is not a message bus connection, @sender must be
3392  * %NULL.
3393  *
3394  * If @sender is a well-known name note that @callback is invoked with
3395  * the unique name for the owner of @sender, not the well-known name
3396  * as one would expect. This is because the message bus rewrites the
3397  * name. As such, to avoid certain race conditions, users should be
3398  * tracking the name owner of the well-known name and use that when
3399  * processing the received signal.
3400  *
3401  * If one of %G_DBUS_SIGNAL_FLAGS_MATCH_ARG0_NAMESPACE or
3402  * %G_DBUS_SIGNAL_FLAGS_MATCH_ARG0_PATH are given, @arg0 is
3403  * interpreted as part of a namespace or path.  The first argument
3404  * of a signal is matched against that part as specified by D-Bus.
3405  *
3406  * If @user_data_free_func is non-%NULL, it will be called (in the
3407  * thread-default main context of the thread you are calling this
3408  * method from) at some point after @user_data is no longer
3409  * needed. (It is not guaranteed to be called synchronously when the
3410  * signal is unsubscribed from, and may be called after @connection
3411  * has been destroyed.)
3412  *
3413  * Returns: a subscription identifier that can be used with g_dbus_connection_signal_unsubscribe()
3414  *
3415  * Since: 2.26
3416  */
3417 guint
3418 g_dbus_connection_signal_subscribe (GDBusConnection     *connection,
3419                                     const gchar         *sender,
3420                                     const gchar         *interface_name,
3421                                     const gchar         *member,
3422                                     const gchar         *object_path,
3423                                     const gchar         *arg0,
3424                                     GDBusSignalFlags     flags,
3425                                     GDBusSignalCallback  callback,
3426                                     gpointer             user_data,
3427                                     GDestroyNotify       user_data_free_func)
3428 {
3429   gchar *rule;
3430   SignalData *signal_data;
3431   SignalSubscriber subscriber;
3432   GPtrArray *signal_data_array;
3433   const gchar *sender_unique_name;
3434
3435   /* Right now we abort if AddMatch() fails since it can only fail with the bus being in
3436    * an OOM condition. We might want to change that but that would involve making
3437    * g_dbus_connection_signal_subscribe() asynchronous and having the call sites
3438    * handle that. And there's really no sensible way of handling this short of retrying
3439    * to add the match rule... and then there's the little thing that, hey, maybe there's
3440    * a reason the bus in an OOM condition.
3441    *
3442    * Doable, but not really sure it's worth it...
3443    */
3444
3445   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), 0);
3446   g_return_val_if_fail (sender == NULL || (g_dbus_is_name (sender) && (connection->flags & G_DBUS_CONNECTION_FLAGS_MESSAGE_BUS_CONNECTION)), 0);
3447   g_return_val_if_fail (interface_name == NULL || g_dbus_is_interface_name (interface_name), 0);
3448   g_return_val_if_fail (member == NULL || g_dbus_is_member_name (member), 0);
3449   g_return_val_if_fail (object_path == NULL || g_variant_is_object_path (object_path), 0);
3450   g_return_val_if_fail (callback != NULL, 0);
3451   g_return_val_if_fail (check_initialized (connection), 0);
3452   g_return_val_if_fail (!((flags & G_DBUS_SIGNAL_FLAGS_MATCH_ARG0_PATH) && (flags & G_DBUS_SIGNAL_FLAGS_MATCH_ARG0_NAMESPACE)), 0);
3453   g_return_val_if_fail (!(arg0 == NULL && (flags & (G_DBUS_SIGNAL_FLAGS_MATCH_ARG0_PATH | G_DBUS_SIGNAL_FLAGS_MATCH_ARG0_NAMESPACE))), 0);
3454
3455   CONNECTION_LOCK (connection);
3456
3457   /* If G_DBUS_SIGNAL_FLAGS_NO_MATCH_RULE was specified, we will end up
3458    * with a '-' character to prefix the rule (which will otherwise be
3459    * normal).
3460    *
3461    * This allows us to hash the rule and do our lifecycle tracking in
3462    * the usual way, but the '-' prevents the match rule from ever
3463    * actually being send to the bus (either for add or remove).
3464    */
3465   rule = args_to_rule (sender, interface_name, member, object_path, arg0, flags);
3466
3467   if (sender != NULL && (g_dbus_is_unique_name (sender) || g_strcmp0 (sender, "org.freedesktop.DBus") == 0))
3468     sender_unique_name = sender;
3469   else
3470     sender_unique_name = "";
3471
3472   subscriber.callback = callback;
3473   subscriber.user_data = user_data;
3474   subscriber.user_data_free_func = user_data_free_func;
3475   subscriber.id = g_atomic_int_add (&_global_subscriber_id, 1); /* TODO: overflow etc. */
3476   subscriber.context = g_main_context_ref_thread_default ();
3477
3478   /* see if we've already have this rule */
3479   signal_data = g_hash_table_lookup (connection->map_rule_to_signal_data, rule);
3480   if (signal_data != NULL)
3481     {
3482       g_array_append_val (signal_data->subscribers, subscriber);
3483       g_free (rule);
3484       goto out;
3485     }
3486
3487   signal_data = g_new0 (SignalData, 1);
3488   signal_data->rule                  = rule;
3489   signal_data->sender                = g_strdup (sender);
3490   signal_data->sender_unique_name    = g_strdup (sender_unique_name);
3491   signal_data->interface_name        = g_strdup (interface_name);
3492   signal_data->member                = g_strdup (member);
3493   signal_data->object_path           = g_strdup (object_path);
3494   signal_data->arg0                  = g_strdup (arg0);
3495   signal_data->flags                 = flags;
3496   signal_data->subscribers           = g_array_new (FALSE, FALSE, sizeof (SignalSubscriber));
3497   g_array_append_val (signal_data->subscribers, subscriber);
3498
3499   g_hash_table_insert (connection->map_rule_to_signal_data,
3500                        signal_data->rule,
3501                        signal_data);
3502
3503   /* Add the match rule to the bus...
3504    *
3505    * Avoid adding match rules for NameLost and NameAcquired messages - the bus will
3506    * always send such messages to us.
3507    */
3508   if (connection->flags & G_DBUS_CONNECTION_FLAGS_MESSAGE_BUS_CONNECTION)
3509     {
3510       if (!is_signal_data_for_name_lost_or_acquired (signal_data))
3511         add_match_rule (connection, signal_data->rule);
3512     }
3513
3514   signal_data_array = g_hash_table_lookup (connection->map_sender_unique_name_to_signal_data_array,
3515                                            signal_data->sender_unique_name);
3516   if (signal_data_array == NULL)
3517     {
3518       signal_data_array = g_ptr_array_new ();
3519       g_hash_table_insert (connection->map_sender_unique_name_to_signal_data_array,
3520                            g_strdup (signal_data->sender_unique_name),
3521                            signal_data_array);
3522     }
3523   g_ptr_array_add (signal_data_array, signal_data);
3524
3525  out:
3526   g_hash_table_insert (connection->map_id_to_signal_data,
3527                        GUINT_TO_POINTER (subscriber.id),
3528                        signal_data);
3529
3530   CONNECTION_UNLOCK (connection);
3531
3532   return subscriber.id;
3533 }
3534
3535 /* ---------------------------------------------------------------------------------------------------- */
3536
3537 /* called in any thread */
3538 /* must hold lock when calling this (except if connection->finalizing is TRUE) */
3539 static void
3540 unsubscribe_id_internal (GDBusConnection *connection,
3541                          guint            subscription_id,
3542                          GArray          *out_removed_subscribers)
3543 {
3544   SignalData *signal_data;
3545   GPtrArray *signal_data_array;
3546   guint n;
3547
3548   signal_data = g_hash_table_lookup (connection->map_id_to_signal_data,
3549                                      GUINT_TO_POINTER (subscription_id));
3550   if (signal_data == NULL)
3551     {
3552       /* Don't warn here, we may have thrown all subscriptions out when the connection was closed */
3553       goto out;
3554     }
3555
3556   for (n = 0; n < signal_data->subscribers->len; n++)
3557     {
3558       SignalSubscriber *subscriber;
3559
3560       subscriber = &(g_array_index (signal_data->subscribers, SignalSubscriber, n));
3561       if (subscriber->id != subscription_id)
3562         continue;
3563
3564       g_warn_if_fail (g_hash_table_remove (connection->map_id_to_signal_data,
3565                                            GUINT_TO_POINTER (subscription_id)));
3566       g_array_append_val (out_removed_subscribers, *subscriber);
3567       g_array_remove_index (signal_data->subscribers, n);
3568
3569       if (signal_data->subscribers->len == 0)
3570         {
3571           g_warn_if_fail (g_hash_table_remove (connection->map_rule_to_signal_data, signal_data->rule));
3572
3573           signal_data_array = g_hash_table_lookup (connection->map_sender_unique_name_to_signal_data_array,
3574                                                    signal_data->sender_unique_name);
3575           g_warn_if_fail (signal_data_array != NULL);
3576           g_warn_if_fail (g_ptr_array_remove (signal_data_array, signal_data));
3577
3578           if (signal_data_array->len == 0)
3579             {
3580               g_warn_if_fail (g_hash_table_remove (connection->map_sender_unique_name_to_signal_data_array,
3581                                                    signal_data->sender_unique_name));
3582             }
3583
3584           /* remove the match rule from the bus unless NameLost or NameAcquired (see subscribe()) */
3585           if ((connection->flags & G_DBUS_CONNECTION_FLAGS_MESSAGE_BUS_CONNECTION) &&
3586               !is_signal_data_for_name_lost_or_acquired (signal_data) &&
3587               !g_dbus_connection_is_closed (connection) &&
3588               !connection->finalizing)
3589             {
3590               /* The check for g_dbus_connection_is_closed() means that
3591                * sending the RemoveMatch message can't fail with
3592                * G_IO_ERROR_CLOSED, because we're holding the lock,
3593                * so on_worker_closed() can't happen between the check we just
3594                * did, and releasing the lock later.
3595                */
3596               remove_match_rule (connection, signal_data->rule);
3597             }
3598
3599           signal_data_free (signal_data);
3600         }
3601
3602       goto out;
3603     }
3604
3605   g_assert_not_reached ();
3606
3607  out:
3608   ;
3609 }
3610
3611 /**
3612  * g_dbus_connection_signal_unsubscribe:
3613  * @connection: a #GDBusConnection
3614  * @subscription_id: a subscription id obtained from
3615  *     g_dbus_connection_signal_subscribe()
3616  *
3617  * Unsubscribes from signals.
3618  *
3619  * Since: 2.26
3620  */
3621 void
3622 g_dbus_connection_signal_unsubscribe (GDBusConnection *connection,
3623                                       guint            subscription_id)
3624 {
3625   GArray *subscribers;
3626   guint n;
3627
3628   g_return_if_fail (G_IS_DBUS_CONNECTION (connection));
3629   g_return_if_fail (check_initialized (connection));
3630
3631   subscribers = g_array_new (FALSE, FALSE, sizeof (SignalSubscriber));
3632
3633   CONNECTION_LOCK (connection);
3634   unsubscribe_id_internal (connection,
3635                            subscription_id,
3636                            subscribers);
3637   CONNECTION_UNLOCK (connection);
3638
3639   /* invariant */
3640   g_assert (subscribers->len == 0 || subscribers->len == 1);
3641
3642   /* call GDestroyNotify without lock held */
3643   for (n = 0; n < subscribers->len; n++)
3644     {
3645       SignalSubscriber *subscriber;
3646       subscriber = &(g_array_index (subscribers, SignalSubscriber, n));
3647       call_destroy_notify (subscriber->context,
3648                            subscriber->user_data_free_func,
3649                            subscriber->user_data);
3650       g_main_context_unref (subscriber->context);
3651     }
3652
3653   g_array_free (subscribers, TRUE);
3654 }
3655
3656 /* ---------------------------------------------------------------------------------------------------- */
3657
3658 typedef struct
3659 {
3660   guint                subscription_id;
3661   GDBusSignalCallback  callback;
3662   gpointer             user_data;
3663   GDBusMessage        *message;
3664   GDBusConnection     *connection;
3665   const gchar         *sender;
3666   const gchar         *path;
3667   const gchar         *interface;
3668   const gchar         *member;
3669 } SignalInstance;
3670
3671 /* called on delivery thread (e.g. where g_dbus_connection_signal_subscribe() was called) with
3672  * no locks held
3673  */
3674 static gboolean
3675 emit_signal_instance_in_idle_cb (gpointer data)
3676 {
3677   SignalInstance *signal_instance = data;
3678   GVariant *parameters;
3679   gboolean has_subscription;
3680
3681   parameters = g_dbus_message_get_body (signal_instance->message);
3682   if (parameters == NULL)
3683     {
3684       parameters = g_variant_new ("()");
3685       g_variant_ref_sink (parameters);
3686     }
3687   else
3688     {
3689       g_variant_ref_sink (parameters);
3690     }
3691
3692 #if 0
3693   g_print ("in emit_signal_instance_in_idle_cb (id=%d sender=%s path=%s interface=%s member=%s params=%s)\n",
3694            signal_instance->subscription_id,
3695            signal_instance->sender,
3696            signal_instance->path,
3697            signal_instance->interface,
3698            signal_instance->member,
3699            g_variant_print (parameters, TRUE));
3700 #endif
3701
3702   /* Careful here, don't do the callback if we no longer has the subscription */
3703   CONNECTION_LOCK (signal_instance->connection);
3704   has_subscription = FALSE;
3705   if (g_hash_table_lookup (signal_instance->connection->map_id_to_signal_data,
3706                            GUINT_TO_POINTER (signal_instance->subscription_id)) != NULL)
3707     has_subscription = TRUE;
3708   CONNECTION_UNLOCK (signal_instance->connection);
3709
3710   if (has_subscription)
3711     signal_instance->callback (signal_instance->connection,
3712                                signal_instance->sender,
3713                                signal_instance->path,
3714                                signal_instance->interface,
3715                                signal_instance->member,
3716                                parameters,
3717                                signal_instance->user_data);
3718
3719   g_variant_unref (parameters);
3720
3721   return FALSE;
3722 }
3723
3724 static void
3725 signal_instance_free (SignalInstance *signal_instance)
3726 {
3727   g_object_unref (signal_instance->message);
3728   g_object_unref (signal_instance->connection);
3729   g_free (signal_instance);
3730 }
3731
3732 static gboolean
3733 namespace_rule_matches (const gchar *namespace,
3734                         const gchar *name)
3735 {
3736   gint len_namespace;
3737   gint len_name;
3738
3739   len_namespace = strlen (namespace);
3740   len_name = strlen (name);
3741
3742   if (len_name < len_namespace)
3743     return FALSE;
3744
3745   if (memcmp (namespace, name, len_namespace) != 0)
3746     return FALSE;
3747
3748   return len_namespace == len_name || name[len_namespace] == '.';
3749 }
3750
3751 static gboolean
3752 path_rule_matches (const gchar *path_a,
3753                    const gchar *path_b)
3754 {
3755   gint len_a, len_b;
3756
3757   len_a = strlen (path_a);
3758   len_b = strlen (path_b);
3759
3760   if (len_a < len_b && (len_a == 0 || path_a[len_a - 1] != '/'))
3761     return FALSE;
3762
3763   if (len_b < len_a && (len_b == 0 || path_b[len_b - 1] != '/'))
3764     return FALSE;
3765
3766   return memcmp (path_a, path_b, MIN (len_a, len_b)) == 0;
3767 }
3768
3769 /* called in GDBusWorker thread WITH lock held */
3770 static void
3771 schedule_callbacks (GDBusConnection *connection,
3772                     GPtrArray       *signal_data_array,
3773                     GDBusMessage    *message,
3774                     const gchar     *sender)
3775 {
3776   guint n, m;
3777   const gchar *interface;
3778   const gchar *member;
3779   const gchar *path;
3780   const gchar *arg0;
3781
3782   interface = NULL;
3783   member = NULL;
3784   path = NULL;
3785   arg0 = NULL;
3786
3787   interface = g_dbus_message_get_interface (message);
3788   member = g_dbus_message_get_member (message);
3789   path = g_dbus_message_get_path (message);
3790   arg0 = g_dbus_message_get_arg0 (message);
3791
3792 #if 0
3793   g_print ("In schedule_callbacks:\n"
3794            "  sender    = '%s'\n"
3795            "  interface = '%s'\n"
3796            "  member    = '%s'\n"
3797            "  path      = '%s'\n"
3798            "  arg0      = '%s'\n",
3799            sender,
3800            interface,
3801            member,
3802            path,
3803            arg0);
3804 #endif
3805
3806   /* TODO: if this is slow, then we can change signal_data_array into
3807    *       map_object_path_to_signal_data_array or something.
3808    */
3809   for (n = 0; n < signal_data_array->len; n++)
3810     {
3811       SignalData *signal_data = signal_data_array->pdata[n];
3812
3813       if (signal_data->interface_name != NULL && g_strcmp0 (signal_data->interface_name, interface) != 0)
3814         continue;
3815
3816       if (signal_data->member != NULL && g_strcmp0 (signal_data->member, member) != 0)
3817         continue;
3818
3819       if (signal_data->object_path != NULL && g_strcmp0 (signal_data->object_path, path) != 0)
3820         continue;
3821
3822       if (signal_data->arg0 != NULL)
3823         {
3824           if (arg0 == NULL)
3825             continue;
3826
3827           if (signal_data->flags & G_DBUS_SIGNAL_FLAGS_MATCH_ARG0_NAMESPACE)
3828             {
3829               if (!namespace_rule_matches (signal_data->arg0, arg0))
3830                 continue;
3831             }
3832           else if (signal_data->flags & G_DBUS_SIGNAL_FLAGS_MATCH_ARG0_PATH)
3833             {
3834               if (!path_rule_matches (signal_data->arg0, arg0))
3835                 continue;
3836             }
3837           else if (!g_str_equal (signal_data->arg0, arg0))
3838             continue;
3839         }
3840
3841       for (m = 0; m < signal_data->subscribers->len; m++)
3842         {
3843           SignalSubscriber *subscriber;
3844           GSource *idle_source;
3845           SignalInstance *signal_instance;
3846
3847           subscriber = &(g_array_index (signal_data->subscribers, SignalSubscriber, m));
3848
3849           signal_instance = g_new0 (SignalInstance, 1);
3850           signal_instance->subscription_id = subscriber->id;
3851           signal_instance->callback = subscriber->callback;
3852           signal_instance->user_data = subscriber->user_data;
3853           signal_instance->message = g_object_ref (message);
3854           signal_instance->connection = g_object_ref (connection);
3855           signal_instance->sender = sender;
3856           signal_instance->path = path;
3857           signal_instance->interface = interface;
3858           signal_instance->member = member;
3859
3860           idle_source = g_idle_source_new ();
3861           g_source_set_priority (idle_source, G_PRIORITY_DEFAULT);
3862           g_source_set_callback (idle_source,
3863                                  emit_signal_instance_in_idle_cb,
3864                                  signal_instance,
3865                                  (GDestroyNotify) signal_instance_free);
3866           g_source_set_name (idle_source, "[gio] emit_signal_instance_in_idle_cb");
3867           g_source_attach (idle_source, subscriber->context);
3868           g_source_unref (idle_source);
3869         }
3870     }
3871 }
3872
3873 /* called in GDBusWorker thread with lock held */
3874 static void
3875 distribute_signals (GDBusConnection *connection,
3876                     GDBusMessage    *message)
3877 {
3878   GPtrArray *signal_data_array;
3879   const gchar *sender;
3880
3881   sender = g_dbus_message_get_sender (message);
3882
3883   if (G_UNLIKELY (_g_dbus_debug_signal ()))
3884     {
3885       _g_dbus_debug_print_lock ();
3886       g_print ("========================================================================\n"
3887                "GDBus-debug:Signal:\n"
3888                " <<<< RECEIVED SIGNAL %s.%s\n"
3889                "      on object %s\n"
3890                "      sent by name %s\n",
3891                g_dbus_message_get_interface (message),
3892                g_dbus_message_get_member (message),
3893                g_dbus_message_get_path (message),
3894                sender != NULL ? sender : "(none)");
3895       _g_dbus_debug_print_unlock ();
3896     }
3897
3898   /* collect subscribers that match on sender */
3899   if (sender != NULL)
3900     {
3901       signal_data_array = g_hash_table_lookup (connection->map_sender_unique_name_to_signal_data_array, sender);
3902       if (signal_data_array != NULL)
3903         schedule_callbacks (connection, signal_data_array, message, sender);
3904     }
3905
3906   /* collect subscribers not matching on sender */
3907   signal_data_array = g_hash_table_lookup (connection->map_sender_unique_name_to_signal_data_array, "");
3908   if (signal_data_array != NULL)
3909     schedule_callbacks (connection, signal_data_array, message, sender);
3910 }
3911
3912 /* ---------------------------------------------------------------------------------------------------- */
3913
3914 /* only called from finalize(), removes all subscriptions */
3915 static void
3916 purge_all_signal_subscriptions (GDBusConnection *connection)
3917 {
3918   GHashTableIter iter;
3919   gpointer key;
3920   GArray *ids;
3921   GArray *subscribers;
3922   guint n;
3923
3924   ids = g_array_new (FALSE, FALSE, sizeof (guint));
3925   g_hash_table_iter_init (&iter, connection->map_id_to_signal_data);
3926   while (g_hash_table_iter_next (&iter, &key, NULL))
3927     {
3928       guint subscription_id = GPOINTER_TO_UINT (key);
3929       g_array_append_val (ids, subscription_id);
3930     }
3931
3932   subscribers = g_array_new (FALSE, FALSE, sizeof (SignalSubscriber));
3933   for (n = 0; n < ids->len; n++)
3934     {
3935       guint subscription_id = g_array_index (ids, guint, n);
3936       unsubscribe_id_internal (connection,
3937                                subscription_id,
3938                                subscribers);
3939     }
3940   g_array_free (ids, TRUE);
3941
3942   /* call GDestroyNotify without lock held */
3943   for (n = 0; n < subscribers->len; n++)
3944     {
3945       SignalSubscriber *subscriber;
3946       subscriber = &(g_array_index (subscribers, SignalSubscriber, n));
3947       call_destroy_notify (subscriber->context,
3948                            subscriber->user_data_free_func,
3949                            subscriber->user_data);
3950       g_main_context_unref (subscriber->context);
3951     }
3952
3953   g_array_free (subscribers, TRUE);
3954 }
3955
3956 /* ---------------------------------------------------------------------------------------------------- */
3957
3958 static GDBusInterfaceVTable *
3959 _g_dbus_interface_vtable_copy (const GDBusInterfaceVTable *vtable)
3960 {
3961   /* Don't waste memory by copying padding - remember to update this
3962    * when changing struct _GDBusInterfaceVTable in gdbusconnection.h
3963    */
3964   return g_memdup ((gconstpointer) vtable, 3 * sizeof (gpointer));
3965 }
3966
3967 static void
3968 _g_dbus_interface_vtable_free (GDBusInterfaceVTable *vtable)
3969 {
3970   g_free (vtable);
3971 }
3972
3973 /* ---------------------------------------------------------------------------------------------------- */
3974
3975 static GDBusSubtreeVTable *
3976 _g_dbus_subtree_vtable_copy (const GDBusSubtreeVTable *vtable)
3977 {
3978   /* Don't waste memory by copying padding - remember to update this
3979    * when changing struct _GDBusSubtreeVTable in gdbusconnection.h
3980    */
3981   return g_memdup ((gconstpointer) vtable, 3 * sizeof (gpointer));
3982 }
3983
3984 static void
3985 _g_dbus_subtree_vtable_free (GDBusSubtreeVTable *vtable)
3986 {
3987   g_free (vtable);
3988 }
3989
3990 /* ---------------------------------------------------------------------------------------------------- */
3991
3992 struct ExportedObject
3993 {
3994   gchar *object_path;
3995   GDBusConnection *connection;
3996
3997   /* maps gchar* -> ExportedInterface* */
3998   GHashTable *map_if_name_to_ei;
3999 };
4000
4001 /* only called with lock held */
4002 static void
4003 exported_object_free (ExportedObject *eo)
4004 {
4005   g_free (eo->object_path);
4006   g_hash_table_unref (eo->map_if_name_to_ei);
4007   g_free (eo);
4008 }
4009
4010 typedef struct
4011 {
4012   ExportedObject *eo;
4013
4014   guint                       id;
4015   gchar                      *interface_name;
4016   GDBusInterfaceVTable       *vtable;
4017   GDBusInterfaceInfo         *interface_info;
4018
4019   GMainContext               *context;
4020   gpointer                    user_data;
4021   GDestroyNotify              user_data_free_func;
4022 } ExportedInterface;
4023
4024 /* called with lock held */
4025 static void
4026 exported_interface_free (ExportedInterface *ei)
4027 {
4028   g_dbus_interface_info_cache_release (ei->interface_info);
4029   g_dbus_interface_info_unref ((GDBusInterfaceInfo *) ei->interface_info);
4030
4031   call_destroy_notify (ei->context,
4032                        ei->user_data_free_func,
4033                        ei->user_data);
4034
4035   g_main_context_unref (ei->context);
4036
4037   g_free (ei->interface_name);
4038   _g_dbus_interface_vtable_free (ei->vtable);
4039   g_free (ei);
4040 }
4041
4042 /* ---------------------------------------------------------------------------------------------------- */
4043
4044 /* Convenience function to check if @registration_id (if not zero) or
4045  * @subtree_registration_id (if not zero) has been unregistered. If
4046  * so, returns %TRUE.
4047  *
4048  * May be called by any thread. Caller must *not* hold lock.
4049  */
4050 static gboolean
4051 has_object_been_unregistered (GDBusConnection  *connection,
4052                               guint             registration_id,
4053                               guint             subtree_registration_id)
4054 {
4055   gboolean ret;
4056
4057   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), FALSE);
4058
4059   ret = FALSE;
4060
4061   CONNECTION_LOCK (connection);
4062   if (registration_id != 0 && g_hash_table_lookup (connection->map_id_to_ei,
4063                                                    GUINT_TO_POINTER (registration_id)) == NULL)
4064     {
4065       ret = TRUE;
4066     }
4067   else if (subtree_registration_id != 0 && g_hash_table_lookup (connection->map_id_to_es,
4068                                                                 GUINT_TO_POINTER (subtree_registration_id)) == NULL)
4069     {
4070       ret = TRUE;
4071     }
4072   CONNECTION_UNLOCK (connection);
4073
4074   return ret;
4075 }
4076
4077 /* ---------------------------------------------------------------------------------------------------- */
4078
4079 typedef struct
4080 {
4081   GDBusConnection *connection;
4082   GDBusMessage *message;
4083   gpointer user_data;
4084   const gchar *property_name;
4085   const GDBusInterfaceVTable *vtable;
4086   GDBusInterfaceInfo *interface_info;
4087   const GDBusPropertyInfo *property_info;
4088   guint registration_id;
4089   guint subtree_registration_id;
4090 } PropertyData;
4091
4092 static void
4093 property_data_free (PropertyData *data)
4094 {
4095   g_object_unref (data->connection);
4096   g_object_unref (data->message);
4097   g_free (data);
4098 }
4099
4100 /* called in thread where object was registered - no locks held */
4101 static gboolean
4102 invoke_get_property_in_idle_cb (gpointer _data)
4103 {
4104   PropertyData *data = _data;
4105   GVariant *value;
4106   GError *error;
4107   GDBusMessage *reply;
4108
4109   if (has_object_been_unregistered (data->connection,
4110                                     data->registration_id,
4111                                     data->subtree_registration_id))
4112     {
4113       reply = g_dbus_message_new_method_error (data->message,
4114                                                "org.freedesktop.DBus.Error.UnknownMethod",
4115                                                _("No such interface ā€œorg.freedesktop.DBus.Propertiesā€ on object at path %s"),
4116                                                g_dbus_message_get_path (data->message));
4117       g_dbus_connection_send_message (data->connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
4118       g_object_unref (reply);
4119       goto out;
4120     }
4121
4122   error = NULL;
4123   value = data->vtable->get_property (data->connection,
4124                                       g_dbus_message_get_sender (data->message),
4125                                       g_dbus_message_get_path (data->message),
4126                                       data->interface_info->name,
4127                                       data->property_name,
4128                                       &error,
4129                                       data->user_data);
4130
4131
4132   if (value != NULL)
4133     {
4134       g_assert_no_error (error);
4135
4136       g_variant_take_ref (value);
4137       reply = g_dbus_message_new_method_reply (data->message);
4138       g_dbus_message_set_body (reply, g_variant_new ("(v)", value));
4139       g_dbus_connection_send_message (data->connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
4140       g_variant_unref (value);
4141       g_object_unref (reply);
4142     }
4143   else
4144     {
4145       gchar *dbus_error_name;
4146       g_assert (error != NULL);
4147       dbus_error_name = g_dbus_error_encode_gerror (error);
4148       reply = g_dbus_message_new_method_error_literal (data->message,
4149                                                        dbus_error_name,
4150                                                        error->message);
4151       g_dbus_connection_send_message (data->connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
4152       g_free (dbus_error_name);
4153       g_error_free (error);
4154       g_object_unref (reply);
4155     }
4156
4157  out:
4158   return FALSE;
4159 }
4160
4161 /* called in thread where object was registered - no locks held */
4162 static gboolean
4163 invoke_set_property_in_idle_cb (gpointer _data)
4164 {
4165   PropertyData *data = _data;
4166   GError *error;
4167   GDBusMessage *reply;
4168   GVariant *value;
4169
4170   error = NULL;
4171   value = NULL;
4172
4173   g_variant_get (g_dbus_message_get_body (data->message),
4174                  "(ssv)",
4175                  NULL,
4176                  NULL,
4177                  &value);
4178
4179   if (!data->vtable->set_property (data->connection,
4180                                    g_dbus_message_get_sender (data->message),
4181                                    g_dbus_message_get_path (data->message),
4182                                    data->interface_info->name,
4183                                    data->property_name,
4184                                    value,
4185                                    &error,
4186                                    data->user_data))
4187     {
4188       gchar *dbus_error_name;
4189       g_assert (error != NULL);
4190       dbus_error_name = g_dbus_error_encode_gerror (error);
4191       reply = g_dbus_message_new_method_error_literal (data->message,
4192                                                        dbus_error_name,
4193                                                        error->message);
4194       g_free (dbus_error_name);
4195       g_error_free (error);
4196     }
4197   else
4198     {
4199       reply = g_dbus_message_new_method_reply (data->message);
4200     }
4201
4202   g_assert (reply != NULL);
4203   g_dbus_connection_send_message (data->connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
4204   g_object_unref (reply);
4205   g_variant_unref (value);
4206
4207   return FALSE;
4208 }
4209
4210 /* called in any thread with connection's lock held */
4211 static gboolean
4212 validate_and_maybe_schedule_property_getset (GDBusConnection            *connection,
4213                                              GDBusMessage               *message,
4214                                              guint                       registration_id,
4215                                              guint                       subtree_registration_id,
4216                                              gboolean                    is_get,
4217                                              GDBusInterfaceInfo         *interface_info,
4218                                              const GDBusInterfaceVTable *vtable,
4219                                              GMainContext               *main_context,
4220                                              gpointer                    user_data)
4221 {
4222   gboolean handled;
4223   const char *interface_name;
4224   const char *property_name;
4225   const GDBusPropertyInfo *property_info;
4226   GSource *idle_source;
4227   PropertyData *property_data;
4228   GDBusMessage *reply;
4229
4230   handled = FALSE;
4231
4232   if (is_get)
4233     g_variant_get (g_dbus_message_get_body (message),
4234                    "(&s&s)",
4235                    &interface_name,
4236                    &property_name);
4237   else
4238     g_variant_get (g_dbus_message_get_body (message),
4239                    "(&s&sv)",
4240                    &interface_name,
4241                    &property_name,
4242                    NULL);
4243
4244   if (vtable == NULL)
4245     goto out;
4246
4247   /* Check that the property exists - if not fail with org.freedesktop.DBus.Error.InvalidArgs
4248    */
4249   property_info = NULL;
4250
4251   /* TODO: the cost of this is O(n) - it might be worth caching the result */
4252   property_info = g_dbus_interface_info_lookup_property (interface_info, property_name);
4253   if (property_info == NULL)
4254     {
4255       reply = g_dbus_message_new_method_error (message,
4256                                                "org.freedesktop.DBus.Error.InvalidArgs",
4257                                                _("No such property ā€œ%sā€"),
4258                                                property_name);
4259       g_dbus_connection_send_message_unlocked (connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
4260       g_object_unref (reply);
4261       handled = TRUE;
4262       goto out;
4263     }
4264
4265   if (is_get && !(property_info->flags & G_DBUS_PROPERTY_INFO_FLAGS_READABLE))
4266     {
4267       reply = g_dbus_message_new_method_error (message,
4268                                                "org.freedesktop.DBus.Error.InvalidArgs",
4269                                                _("Property ā€œ%sā€ is not readable"),
4270                                                property_name);
4271       g_dbus_connection_send_message_unlocked (connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
4272       g_object_unref (reply);
4273       handled = TRUE;
4274       goto out;
4275     }
4276   else if (!is_get && !(property_info->flags & G_DBUS_PROPERTY_INFO_FLAGS_WRITABLE))
4277     {
4278       reply = g_dbus_message_new_method_error (message,
4279                                                "org.freedesktop.DBus.Error.InvalidArgs",
4280                                                _("Property ā€œ%sā€ is not writable"),
4281                                                property_name);
4282       g_dbus_connection_send_message_unlocked (connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
4283       g_object_unref (reply);
4284       handled = TRUE;
4285       goto out;
4286     }
4287
4288   if (!is_get)
4289     {
4290       GVariant *value;
4291
4292       /* Fail with org.freedesktop.DBus.Error.InvalidArgs if the type
4293        * of the given value is wrong
4294        */
4295       g_variant_get_child (g_dbus_message_get_body (message), 2, "v", &value);
4296       if (g_strcmp0 (g_variant_get_type_string (value), property_info->signature) != 0)
4297         {
4298           reply = g_dbus_message_new_method_error (message,
4299                                                    "org.freedesktop.DBus.Error.InvalidArgs",
4300                                                    _("Error setting property ā€œ%sā€: Expected type ā€œ%sā€ but got ā€œ%sā€"),
4301                                                    property_name, property_info->signature,
4302                                                    g_variant_get_type_string (value));
4303           g_dbus_connection_send_message_unlocked (connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
4304           g_variant_unref (value);
4305           g_object_unref (reply);
4306           handled = TRUE;
4307           goto out;
4308         }
4309
4310       g_variant_unref (value);
4311     }
4312
4313   /* If the vtable pointer for get_property() resp. set_property() is
4314    * NULL then dispatch the call via the method_call() handler.
4315    */
4316   if (is_get)
4317     {
4318       if (vtable->get_property == NULL)
4319         {
4320           schedule_method_call (connection, message, registration_id, subtree_registration_id,
4321                                 interface_info, NULL, property_info, g_dbus_message_get_body (message),
4322                                 vtable, main_context, user_data);
4323           handled = TRUE;
4324           goto out;
4325         }
4326     }
4327   else
4328     {
4329       if (vtable->set_property == NULL)
4330         {
4331           schedule_method_call (connection, message, registration_id, subtree_registration_id,
4332                                 interface_info, NULL, property_info, g_dbus_message_get_body (message),
4333                                 vtable, main_context, user_data);
4334           handled = TRUE;
4335           goto out;
4336         }
4337     }
4338
4339   /* ok, got the property info - call user code in an idle handler */
4340   property_data = g_new0 (PropertyData, 1);
4341   property_data->connection = g_object_ref (connection);
4342   property_data->message = g_object_ref (message);
4343   property_data->user_data = user_data;
4344   property_data->property_name = property_name;
4345   property_data->vtable = vtable;
4346   property_data->interface_info = interface_info;
4347   property_data->property_info = property_info;
4348   property_data->registration_id = registration_id;
4349   property_data->subtree_registration_id = subtree_registration_id;
4350
4351   idle_source = g_idle_source_new ();
4352   g_source_set_priority (idle_source, G_PRIORITY_DEFAULT);
4353   g_source_set_callback (idle_source,
4354                          is_get ? invoke_get_property_in_idle_cb : invoke_set_property_in_idle_cb,
4355                          property_data,
4356                          (GDestroyNotify) property_data_free);
4357   if (is_get)
4358     g_source_set_name (idle_source, "[gio] invoke_get_property_in_idle_cb");
4359   else
4360     g_source_set_name (idle_source, "[gio] invoke_set_property_in_idle_cb");
4361   g_source_attach (idle_source, main_context);
4362   g_source_unref (idle_source);
4363
4364   handled = TRUE;
4365
4366  out:
4367   return handled;
4368 }
4369
4370 /* called in GDBusWorker thread with connection's lock held */
4371 static gboolean
4372 handle_getset_property (GDBusConnection *connection,
4373                         ExportedObject  *eo,
4374                         GDBusMessage    *message,
4375                         gboolean         is_get)
4376 {
4377   ExportedInterface *ei;
4378   gboolean handled;
4379   const char *interface_name;
4380   const char *property_name;
4381
4382   handled = FALSE;
4383
4384   if (is_get)
4385     g_variant_get (g_dbus_message_get_body (message),
4386                    "(&s&s)",
4387                    &interface_name,
4388                    &property_name);
4389   else
4390     g_variant_get (g_dbus_message_get_body (message),
4391                    "(&s&sv)",
4392                    &interface_name,
4393                    &property_name,
4394                    NULL);
4395
4396   /* Fail with org.freedesktop.DBus.Error.InvalidArgs if there is
4397    * no such interface registered
4398    */
4399   ei = g_hash_table_lookup (eo->map_if_name_to_ei, interface_name);
4400   if (ei == NULL)
4401     {
4402       GDBusMessage *reply;
4403       reply = g_dbus_message_new_method_error (message,
4404                                                "org.freedesktop.DBus.Error.InvalidArgs",
4405                                                _("No such interface ā€œ%sā€"),
4406                                                interface_name);
4407       g_dbus_connection_send_message_unlocked (eo->connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
4408       g_object_unref (reply);
4409       handled = TRUE;
4410       goto out;
4411     }
4412
4413   handled = validate_and_maybe_schedule_property_getset (eo->connection,
4414                                                          message,
4415                                                          ei->id,
4416                                                          0,
4417                                                          is_get,
4418                                                          ei->interface_info,
4419                                                          ei->vtable,
4420                                                          ei->context,
4421                                                          ei->user_data);
4422  out:
4423   return handled;
4424 }
4425
4426 /* ---------------------------------------------------------------------------------------------------- */
4427
4428 typedef struct
4429 {
4430   GDBusConnection *connection;
4431   GDBusMessage *message;
4432   gpointer user_data;
4433   const GDBusInterfaceVTable *vtable;
4434   GDBusInterfaceInfo *interface_info;
4435   guint registration_id;
4436   guint subtree_registration_id;
4437 } PropertyGetAllData;
4438
4439 static void
4440 property_get_all_data_free (PropertyData *data)
4441 {
4442   g_object_unref (data->connection);
4443   g_object_unref (data->message);
4444   g_free (data);
4445 }
4446
4447 /* called in thread where object was registered - no locks held */
4448 static gboolean
4449 invoke_get_all_properties_in_idle_cb (gpointer _data)
4450 {
4451   PropertyGetAllData *data = _data;
4452   GVariantBuilder builder;
4453   GDBusMessage *reply;
4454   guint n;
4455
4456   if (has_object_been_unregistered (data->connection,
4457                                     data->registration_id,
4458                                     data->subtree_registration_id))
4459     {
4460       reply = g_dbus_message_new_method_error (data->message,
4461                                                "org.freedesktop.DBus.Error.UnknownMethod",
4462                                                _("No such interface ā€œorg.freedesktop.DBus.Propertiesā€ on object at path %s"),
4463                                                g_dbus_message_get_path (data->message));
4464       g_dbus_connection_send_message (data->connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
4465       g_object_unref (reply);
4466       goto out;
4467     }
4468
4469   /* TODO: Right now we never fail this call - we just omit values if
4470    *       a get_property() call is failing.
4471    *
4472    *       We could fail the whole call if just a single get_property() call
4473    *       returns an error. We need clarification in the D-Bus spec about this.
4474    */
4475   g_variant_builder_init (&builder, G_VARIANT_TYPE ("(a{sv})"));
4476   g_variant_builder_open (&builder, G_VARIANT_TYPE ("a{sv}"));
4477   for (n = 0; data->interface_info->properties != NULL && data->interface_info->properties[n] != NULL; n++)
4478     {
4479       const GDBusPropertyInfo *property_info = data->interface_info->properties[n];
4480       GVariant *value;
4481
4482       if (!(property_info->flags & G_DBUS_PROPERTY_INFO_FLAGS_READABLE))
4483         continue;
4484
4485       value = data->vtable->get_property (data->connection,
4486                                           g_dbus_message_get_sender (data->message),
4487                                           g_dbus_message_get_path (data->message),
4488                                           data->interface_info->name,
4489                                           property_info->name,
4490                                           NULL,
4491                                           data->user_data);
4492
4493       if (value == NULL)
4494         continue;
4495
4496       g_variant_take_ref (value);
4497       g_variant_builder_add (&builder,
4498                              "{sv}",
4499                              property_info->name,
4500                              value);
4501       g_variant_unref (value);
4502     }
4503   g_variant_builder_close (&builder);
4504
4505   reply = g_dbus_message_new_method_reply (data->message);
4506   g_dbus_message_set_body (reply, g_variant_builder_end (&builder));
4507   g_dbus_connection_send_message (data->connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
4508   g_object_unref (reply);
4509
4510  out:
4511   return FALSE;
4512 }
4513
4514 static gboolean
4515 interface_has_readable_properties (GDBusInterfaceInfo *interface_info)
4516 {
4517   gint i;
4518
4519   if (!interface_info->properties)
4520     return FALSE;
4521
4522   for (i = 0; interface_info->properties[i]; i++)
4523     if (interface_info->properties[i]->flags & G_DBUS_PROPERTY_INFO_FLAGS_READABLE)
4524       return TRUE;
4525
4526   return FALSE;
4527 }
4528
4529 /* called in any thread with connection's lock held */
4530 static gboolean
4531 validate_and_maybe_schedule_property_get_all (GDBusConnection            *connection,
4532                                               GDBusMessage               *message,
4533                                               guint                       registration_id,
4534                                               guint                       subtree_registration_id,
4535                                               GDBusInterfaceInfo         *interface_info,
4536                                               const GDBusInterfaceVTable *vtable,
4537                                               GMainContext               *main_context,
4538                                               gpointer                    user_data)
4539 {
4540   gboolean handled;
4541   GSource *idle_source;
4542   PropertyGetAllData *property_get_all_data;
4543
4544   handled = FALSE;
4545
4546   if (vtable == NULL)
4547     goto out;
4548
4549   /* If the vtable pointer for get_property() is NULL but we have a
4550    * non-zero number of readable properties, then dispatch the call via
4551    * the method_call() handler.
4552    */
4553   if (vtable->get_property == NULL && interface_has_readable_properties (interface_info))
4554     {
4555       schedule_method_call (connection, message, registration_id, subtree_registration_id,
4556                             interface_info, NULL, NULL, g_dbus_message_get_body (message),
4557                             vtable, main_context, user_data);
4558       handled = TRUE;
4559       goto out;
4560     }
4561
4562   /* ok, got the property info - call user in an idle handler */
4563   property_get_all_data = g_new0 (PropertyGetAllData, 1);
4564   property_get_all_data->connection = g_object_ref (connection);
4565   property_get_all_data->message = g_object_ref (message);
4566   property_get_all_data->user_data = user_data;
4567   property_get_all_data->vtable = vtable;
4568   property_get_all_data->interface_info = interface_info;
4569   property_get_all_data->registration_id = registration_id;
4570   property_get_all_data->subtree_registration_id = subtree_registration_id;
4571
4572   idle_source = g_idle_source_new ();
4573   g_source_set_priority (idle_source, G_PRIORITY_DEFAULT);
4574   g_source_set_callback (idle_source,
4575                          invoke_get_all_properties_in_idle_cb,
4576                          property_get_all_data,
4577                          (GDestroyNotify) property_get_all_data_free);
4578   g_source_set_name (idle_source, "[gio] invoke_get_all_properties_in_idle_cb");
4579   g_source_attach (idle_source, main_context);
4580   g_source_unref (idle_source);
4581
4582   handled = TRUE;
4583
4584  out:
4585   return handled;
4586 }
4587
4588 /* called in GDBusWorker thread with connection's lock held */
4589 static gboolean
4590 handle_get_all_properties (GDBusConnection *connection,
4591                            ExportedObject  *eo,
4592                            GDBusMessage    *message)
4593 {
4594   ExportedInterface *ei;
4595   gboolean handled;
4596   const char *interface_name;
4597
4598   handled = FALSE;
4599
4600   g_variant_get (g_dbus_message_get_body (message),
4601                  "(&s)",
4602                  &interface_name);
4603
4604   /* Fail with org.freedesktop.DBus.Error.InvalidArgs if there is
4605    * no such interface registered
4606    */
4607   ei = g_hash_table_lookup (eo->map_if_name_to_ei, interface_name);
4608   if (ei == NULL)
4609     {
4610       GDBusMessage *reply;
4611       reply = g_dbus_message_new_method_error (message,
4612                                                "org.freedesktop.DBus.Error.InvalidArgs",
4613                                                _("No such interface ā€œ%sā€"),
4614                                                interface_name);
4615       g_dbus_connection_send_message_unlocked (eo->connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
4616       g_object_unref (reply);
4617       handled = TRUE;
4618       goto out;
4619     }
4620
4621   handled = validate_and_maybe_schedule_property_get_all (eo->connection,
4622                                                           message,
4623                                                           ei->id,
4624                                                           0,
4625                                                           ei->interface_info,
4626                                                           ei->vtable,
4627                                                           ei->context,
4628                                                           ei->user_data);
4629  out:
4630   return handled;
4631 }
4632
4633 /* ---------------------------------------------------------------------------------------------------- */
4634
4635 static const gchar introspect_header[] =
4636   "<!DOCTYPE node PUBLIC \"-//freedesktop//DTD D-BUS Object Introspection 1.0//EN\"\n"
4637   "                      \"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd\">\n"
4638   "<!-- GDBus " PACKAGE_VERSION " -->\n"
4639   "<node>\n";
4640
4641 static const gchar introspect_tail[] =
4642   "</node>\n";
4643
4644 static const gchar introspect_properties_interface[] =
4645   "  <interface name=\"org.freedesktop.DBus.Properties\">\n"
4646   "    <method name=\"Get\">\n"
4647   "      <arg type=\"s\" name=\"interface_name\" direction=\"in\"/>\n"
4648   "      <arg type=\"s\" name=\"property_name\" direction=\"in\"/>\n"
4649   "      <arg type=\"v\" name=\"value\" direction=\"out\"/>\n"
4650   "    </method>\n"
4651   "    <method name=\"GetAll\">\n"
4652   "      <arg type=\"s\" name=\"interface_name\" direction=\"in\"/>\n"
4653   "      <arg type=\"a{sv}\" name=\"properties\" direction=\"out\"/>\n"
4654   "    </method>\n"
4655   "    <method name=\"Set\">\n"
4656   "      <arg type=\"s\" name=\"interface_name\" direction=\"in\"/>\n"
4657   "      <arg type=\"s\" name=\"property_name\" direction=\"in\"/>\n"
4658   "      <arg type=\"v\" name=\"value\" direction=\"in\"/>\n"
4659   "    </method>\n"
4660   "    <signal name=\"PropertiesChanged\">\n"
4661   "      <arg type=\"s\" name=\"interface_name\"/>\n"
4662   "      <arg type=\"a{sv}\" name=\"changed_properties\"/>\n"
4663   "      <arg type=\"as\" name=\"invalidated_properties\"/>\n"
4664   "    </signal>\n"
4665   "  </interface>\n";
4666
4667 static const gchar introspect_introspectable_interface[] =
4668   "  <interface name=\"org.freedesktop.DBus.Introspectable\">\n"
4669   "    <method name=\"Introspect\">\n"
4670   "      <arg type=\"s\" name=\"xml_data\" direction=\"out\"/>\n"
4671   "    </method>\n"
4672   "  </interface>\n"
4673   "  <interface name=\"org.freedesktop.DBus.Peer\">\n"
4674   "    <method name=\"Ping\"/>\n"
4675   "    <method name=\"GetMachineId\">\n"
4676   "      <arg type=\"s\" name=\"machine_uuid\" direction=\"out\"/>\n"
4677   "    </method>\n"
4678   "  </interface>\n";
4679
4680 static void
4681 introspect_append_header (GString *s)
4682 {
4683   g_string_append (s, introspect_header);
4684 }
4685
4686 static void
4687 maybe_add_path (const gchar *path, gsize path_len, const gchar *object_path, GHashTable *set)
4688 {
4689   if (g_str_has_prefix (object_path, path) && strlen (object_path) > path_len && object_path[path_len-1] == '/')
4690     {
4691       const gchar *begin;
4692       const gchar *end;
4693       gchar *s;
4694
4695       begin = object_path + path_len;
4696       end = strchr (begin, '/');
4697       if (end != NULL)
4698         s = g_strndup (begin, end - begin);
4699       else
4700         s = g_strdup (begin);
4701
4702       if (!g_hash_table_contains (set, s))
4703         g_hash_table_add (set, s);
4704       else
4705         g_free (s);
4706     }
4707 }
4708
4709 /* TODO: we want a nicer public interface for this */
4710 /* called in any thread with connection's lock held */
4711 static gchar **
4712 g_dbus_connection_list_registered_unlocked (GDBusConnection *connection,
4713                                             const gchar     *path)
4714 {
4715   GPtrArray *p;
4716   gchar **ret;
4717   GHashTableIter hash_iter;
4718   const gchar *object_path;
4719   gsize path_len;
4720   GHashTable *set;
4721   GList *keys;
4722   GList *l;
4723
4724   CONNECTION_ENSURE_LOCK (connection);
4725
4726   path_len = strlen (path);
4727   if (path_len > 1)
4728     path_len++;
4729
4730   set = g_hash_table_new (g_str_hash, g_str_equal);
4731
4732   g_hash_table_iter_init (&hash_iter, connection->map_object_path_to_eo);
4733   while (g_hash_table_iter_next (&hash_iter, (gpointer) &object_path, NULL))
4734     maybe_add_path (path, path_len, object_path, set);
4735
4736   g_hash_table_iter_init (&hash_iter, connection->map_object_path_to_es);
4737   while (g_hash_table_iter_next (&hash_iter, (gpointer) &object_path, NULL))
4738     maybe_add_path (path, path_len, object_path, set);
4739
4740   p = g_ptr_array_new ();
4741   keys = g_hash_table_get_keys (set);
4742   for (l = keys; l != NULL; l = l->next)
4743     g_ptr_array_add (p, l->data);
4744   g_hash_table_unref (set);
4745   g_list_free (keys);
4746
4747   g_ptr_array_add (p, NULL);
4748   ret = (gchar **) g_ptr_array_free (p, FALSE);
4749   return ret;
4750 }
4751
4752 /* called in any thread with connection's lock not held */
4753 static gchar **
4754 g_dbus_connection_list_registered (GDBusConnection *connection,
4755                                    const gchar     *path)
4756 {
4757   gchar **ret;
4758   CONNECTION_LOCK (connection);
4759   ret = g_dbus_connection_list_registered_unlocked (connection, path);
4760   CONNECTION_UNLOCK (connection);
4761   return ret;
4762 }
4763
4764 /* called in GDBusWorker thread with connection's lock held */
4765 static gboolean
4766 handle_introspect (GDBusConnection *connection,
4767                    ExportedObject  *eo,
4768                    GDBusMessage    *message)
4769 {
4770   guint n;
4771   GString *s;
4772   GDBusMessage *reply;
4773   GHashTableIter hash_iter;
4774   ExportedInterface *ei;
4775   gchar **registered;
4776
4777   /* first the header with the standard interfaces */
4778   s = g_string_sized_new (sizeof (introspect_header) +
4779                           sizeof (introspect_properties_interface) +
4780                           sizeof (introspect_introspectable_interface) +
4781                           sizeof (introspect_tail));
4782   introspect_append_header (s);
4783   if (!g_hash_table_lookup (eo->map_if_name_to_ei,
4784                             "org.freedesktop.DBus.Properties"))
4785     g_string_append (s, introspect_properties_interface);
4786
4787   if (!g_hash_table_lookup (eo->map_if_name_to_ei,
4788                             "org.freedesktop.DBus.Introspectable"))
4789     g_string_append (s, introspect_introspectable_interface);
4790
4791   /* then include the registered interfaces */
4792   g_hash_table_iter_init (&hash_iter, eo->map_if_name_to_ei);
4793   while (g_hash_table_iter_next (&hash_iter, NULL, (gpointer) &ei))
4794     g_dbus_interface_info_generate_xml (ei->interface_info, 2, s);
4795
4796   /* finally include nodes registered below us */
4797   registered = g_dbus_connection_list_registered_unlocked (connection, eo->object_path);
4798   for (n = 0; registered != NULL && registered[n] != NULL; n++)
4799     g_string_append_printf (s, "  <node name=\"%s\"/>\n", registered[n]);
4800   g_strfreev (registered);
4801   g_string_append (s, introspect_tail);
4802
4803   reply = g_dbus_message_new_method_reply (message);
4804   g_dbus_message_set_body (reply, g_variant_new ("(s)", s->str));
4805   g_dbus_connection_send_message_unlocked (connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
4806   g_object_unref (reply);
4807   g_string_free (s, TRUE);
4808
4809   return TRUE;
4810 }
4811
4812 /* called in thread where object was registered - no locks held */
4813 static gboolean
4814 call_in_idle_cb (gpointer user_data)
4815 {
4816   GDBusMethodInvocation *invocation = G_DBUS_METHOD_INVOCATION (user_data);
4817   GDBusInterfaceVTable *vtable;
4818   guint registration_id;
4819   guint subtree_registration_id;
4820
4821   registration_id = GPOINTER_TO_UINT (g_object_get_data (G_OBJECT (invocation), "g-dbus-registration-id"));
4822   subtree_registration_id = GPOINTER_TO_UINT (g_object_get_data (G_OBJECT (invocation), "g-dbus-subtree-registration-id"));
4823
4824   if (has_object_been_unregistered (g_dbus_method_invocation_get_connection (invocation),
4825                                     registration_id,
4826                                     subtree_registration_id))
4827     {
4828       GDBusMessage *reply;
4829       reply = g_dbus_message_new_method_error (g_dbus_method_invocation_get_message (invocation),
4830                                                "org.freedesktop.DBus.Error.UnknownMethod",
4831                                                _("No such interface ā€œ%sā€ on object at path %s"),
4832                                                g_dbus_method_invocation_get_interface_name (invocation),
4833                                                g_dbus_method_invocation_get_object_path (invocation));
4834       g_dbus_connection_send_message (g_dbus_method_invocation_get_connection (invocation), reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
4835       g_object_unref (reply);
4836       goto out;
4837     }
4838
4839   vtable = g_object_get_data (G_OBJECT (invocation), "g-dbus-interface-vtable");
4840   g_assert (vtable != NULL && vtable->method_call != NULL);
4841
4842   vtable->method_call (g_dbus_method_invocation_get_connection (invocation),
4843                        g_dbus_method_invocation_get_sender (invocation),
4844                        g_dbus_method_invocation_get_object_path (invocation),
4845                        g_dbus_method_invocation_get_interface_name (invocation),
4846                        g_dbus_method_invocation_get_method_name (invocation),
4847                        g_dbus_method_invocation_get_parameters (invocation),
4848                        g_object_ref (invocation),
4849                        g_dbus_method_invocation_get_user_data (invocation));
4850
4851  out:
4852   return FALSE;
4853 }
4854
4855 /* called in GDBusWorker thread with connection's lock held */
4856 static void
4857 schedule_method_call (GDBusConnection            *connection,
4858                       GDBusMessage               *message,
4859                       guint                       registration_id,
4860                       guint                       subtree_registration_id,
4861                       const GDBusInterfaceInfo   *interface_info,
4862                       const GDBusMethodInfo      *method_info,
4863                       const GDBusPropertyInfo    *property_info,
4864                       GVariant                   *parameters,
4865                       const GDBusInterfaceVTable *vtable,
4866                       GMainContext               *main_context,
4867                       gpointer                    user_data)
4868 {
4869   GDBusMethodInvocation *invocation;
4870   GSource *idle_source;
4871
4872   invocation = _g_dbus_method_invocation_new (g_dbus_message_get_sender (message),
4873                                               g_dbus_message_get_path (message),
4874                                               g_dbus_message_get_interface (message),
4875                                               g_dbus_message_get_member (message),
4876                                               method_info,
4877                                               property_info,
4878                                               connection,
4879                                               message,
4880                                               parameters,
4881                                               user_data);
4882
4883   /* TODO: would be nicer with a real MethodData like we already
4884    * have PropertyData and PropertyGetAllData... */
4885   g_object_set_data (G_OBJECT (invocation), "g-dbus-interface-vtable", (gpointer) vtable);
4886   g_object_set_data (G_OBJECT (invocation), "g-dbus-registration-id", GUINT_TO_POINTER (registration_id));
4887   g_object_set_data (G_OBJECT (invocation), "g-dbus-subtree-registration-id", GUINT_TO_POINTER (subtree_registration_id));
4888
4889   idle_source = g_idle_source_new ();
4890   g_source_set_priority (idle_source, G_PRIORITY_DEFAULT);
4891   g_source_set_callback (idle_source,
4892                          call_in_idle_cb,
4893                          invocation,
4894                          g_object_unref);
4895   g_source_set_name (idle_source, "[gio, " __FILE__ "] call_in_idle_cb");
4896   g_source_attach (idle_source, main_context);
4897   g_source_unref (idle_source);
4898 }
4899
4900 /* called in GDBusWorker thread with connection's lock held */
4901 static gboolean
4902 validate_and_maybe_schedule_method_call (GDBusConnection            *connection,
4903                                          GDBusMessage               *message,
4904                                          guint                       registration_id,
4905                                          guint                       subtree_registration_id,
4906                                          GDBusInterfaceInfo         *interface_info,
4907                                          const GDBusInterfaceVTable *vtable,
4908                                          GMainContext               *main_context,
4909                                          gpointer                    user_data)
4910 {
4911   GDBusMethodInfo *method_info;
4912   GDBusMessage *reply;
4913   GVariant *parameters;
4914   gboolean handled;
4915   GVariantType *in_type;
4916
4917   handled = FALSE;
4918
4919   /* TODO: the cost of this is O(n) - it might be worth caching the result */
4920   method_info = g_dbus_interface_info_lookup_method (interface_info, g_dbus_message_get_member (message));
4921
4922   /* if the method doesn't exist, return the org.freedesktop.DBus.Error.UnknownMethod
4923    * error to the caller
4924    */
4925   if (method_info == NULL)
4926     {
4927       reply = g_dbus_message_new_method_error (message,
4928                                                "org.freedesktop.DBus.Error.UnknownMethod",
4929                                                _("No such method ā€œ%sā€"),
4930                                                g_dbus_message_get_member (message));
4931       g_dbus_connection_send_message_unlocked (connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
4932       g_object_unref (reply);
4933       handled = TRUE;
4934       goto out;
4935     }
4936
4937   parameters = g_dbus_message_get_body (message);
4938   if (parameters == NULL)
4939     {
4940       parameters = g_variant_new ("()");
4941       g_variant_ref_sink (parameters);
4942     }
4943   else
4944     {
4945       g_variant_ref (parameters);
4946     }
4947
4948   /* Check that the incoming args are of the right type - if they are not, return
4949    * the org.freedesktop.DBus.Error.InvalidArgs error to the caller
4950    */
4951   in_type = _g_dbus_compute_complete_signature (method_info->in_args);
4952   if (!g_variant_is_of_type (parameters, in_type))
4953     {
4954       gchar *type_string;
4955
4956       type_string = g_variant_type_dup_string (in_type);
4957
4958       reply = g_dbus_message_new_method_error (message,
4959                                                "org.freedesktop.DBus.Error.InvalidArgs",
4960                                                _("Type of message, ā€œ%sā€, does not match expected type ā€œ%sā€"),
4961                                                g_variant_get_type_string (parameters),
4962                                                type_string);
4963       g_dbus_connection_send_message_unlocked (connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
4964       g_variant_type_free (in_type);
4965       g_variant_unref (parameters);
4966       g_object_unref (reply);
4967       g_free (type_string);
4968       handled = TRUE;
4969       goto out;
4970     }
4971   g_variant_type_free (in_type);
4972
4973   /* schedule the call in idle */
4974   schedule_method_call (connection, message, registration_id, subtree_registration_id,
4975                         interface_info, method_info, NULL, parameters,
4976                         vtable, main_context, user_data);
4977   g_variant_unref (parameters);
4978   handled = TRUE;
4979
4980  out:
4981   return handled;
4982 }
4983
4984 /* ---------------------------------------------------------------------------------------------------- */
4985
4986 /* called in GDBusWorker thread with connection's lock held */
4987 static gboolean
4988 obj_message_func (GDBusConnection *connection,
4989                   ExportedObject  *eo,
4990                   GDBusMessage    *message)
4991 {
4992   const gchar *interface_name;
4993   const gchar *member;
4994   const gchar *signature;
4995   gboolean handled;
4996
4997   handled = FALSE;
4998
4999   interface_name = g_dbus_message_get_interface (message);
5000   member = g_dbus_message_get_member (message);
5001   signature = g_dbus_message_get_signature (message);
5002
5003   /* see if we have an interface for handling this call */
5004   if (interface_name != NULL)
5005     {
5006       ExportedInterface *ei;
5007       ei = g_hash_table_lookup (eo->map_if_name_to_ei, interface_name);
5008       if (ei != NULL)
5009         {
5010           /* we do - invoke the handler in idle in the right thread */
5011
5012           /* handle no vtable or handler being present */
5013           if (ei->vtable == NULL || ei->vtable->method_call == NULL)
5014             goto out;
5015
5016           handled = validate_and_maybe_schedule_method_call (connection,
5017                                                              message,
5018                                                              ei->id,
5019                                                              0,
5020                                                              ei->interface_info,
5021                                                              ei->vtable,
5022                                                              ei->context,
5023                                                              ei->user_data);
5024           goto out;
5025         }
5026     }
5027
5028   if (g_strcmp0 (interface_name, "org.freedesktop.DBus.Introspectable") == 0 &&
5029       g_strcmp0 (member, "Introspect") == 0 &&
5030       g_strcmp0 (signature, "") == 0)
5031     {
5032       handled = handle_introspect (connection, eo, message);
5033       goto out;
5034     }
5035   else if (g_strcmp0 (interface_name, "org.freedesktop.DBus.Properties") == 0 &&
5036            g_strcmp0 (member, "Get") == 0 &&
5037            g_strcmp0 (signature, "ss") == 0)
5038     {
5039       handled = handle_getset_property (connection, eo, message, TRUE);
5040       goto out;
5041     }
5042   else if (g_strcmp0 (interface_name, "org.freedesktop.DBus.Properties") == 0 &&
5043            g_strcmp0 (member, "Set") == 0 &&
5044            g_strcmp0 (signature, "ssv") == 0)
5045     {
5046       handled = handle_getset_property (connection, eo, message, FALSE);
5047       goto out;
5048     }
5049   else if (g_strcmp0 (interface_name, "org.freedesktop.DBus.Properties") == 0 &&
5050            g_strcmp0 (member, "GetAll") == 0 &&
5051            g_strcmp0 (signature, "s") == 0)
5052     {
5053       handled = handle_get_all_properties (connection, eo, message);
5054       goto out;
5055     }
5056
5057  out:
5058   return handled;
5059 }
5060
5061 /**
5062  * g_dbus_connection_register_object:
5063  * @connection: a #GDBusConnection
5064  * @object_path: the object path to register at
5065  * @interface_info: introspection data for the interface
5066  * @vtable: (nullable): a #GDBusInterfaceVTable to call into or %NULL
5067  * @user_data: (nullable): data to pass to functions in @vtable
5068  * @user_data_free_func: function to call when the object path is unregistered
5069  * @error: return location for error or %NULL
5070  *
5071  * Registers callbacks for exported objects at @object_path with the
5072  * D-Bus interface that is described in @interface_info.
5073  *
5074  * Calls to functions in @vtable (and @user_data_free_func) will happen
5075  * in the 
5076  * [thread-default main context][g-main-context-push-thread-default]
5077  * of the thread you are calling this method from.
5078  *
5079  * Note that all #GVariant values passed to functions in @vtable will match
5080  * the signature given in @interface_info - if a remote caller passes
5081  * incorrect values, the `org.freedesktop.DBus.Error.InvalidArgs`
5082  * is returned to the remote caller.
5083  *
5084  * Additionally, if the remote caller attempts to invoke methods or
5085  * access properties not mentioned in @interface_info the
5086  * `org.freedesktop.DBus.Error.UnknownMethod` resp.
5087  * `org.freedesktop.DBus.Error.InvalidArgs` errors
5088  * are returned to the caller.
5089  *
5090  * It is considered a programming error if the
5091  * #GDBusInterfaceGetPropertyFunc function in @vtable returns a
5092  * #GVariant of incorrect type.
5093  *
5094  * If an existing callback is already registered at @object_path and
5095  * @interface_name, then @error is set to #G_IO_ERROR_EXISTS.
5096  *
5097  * GDBus automatically implements the standard D-Bus interfaces
5098  * org.freedesktop.DBus.Properties, org.freedesktop.DBus.Introspectable
5099  * and org.freedesktop.Peer, so you don't have to implement those for the
5100  * objects you export. You can implement org.freedesktop.DBus.Properties
5101  * yourself, e.g. to handle getting and setting of properties asynchronously.
5102  *
5103  * Note that the reference count on @interface_info will be
5104  * incremented by 1 (unless allocated statically, e.g. if the
5105  * reference count is -1, see g_dbus_interface_info_ref()) for as long
5106  * as the object is exported. Also note that @vtable will be copied.
5107  *
5108  * See this [server][gdbus-server] for an example of how to use this method.
5109  *
5110  * Returns: 0 if @error is set, otherwise a registration id (never 0)
5111  *     that can be used with g_dbus_connection_unregister_object()
5112  *
5113  * Since: 2.26
5114  */
5115 guint
5116 g_dbus_connection_register_object (GDBusConnection             *connection,
5117                                    const gchar                 *object_path,
5118                                    GDBusInterfaceInfo          *interface_info,
5119                                    const GDBusInterfaceVTable  *vtable,
5120                                    gpointer                     user_data,
5121                                    GDestroyNotify               user_data_free_func,
5122                                    GError                     **error)
5123 {
5124   ExportedObject *eo;
5125   ExportedInterface *ei;
5126   guint ret;
5127
5128   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), 0);
5129   g_return_val_if_fail (object_path != NULL && g_variant_is_object_path (object_path), 0);
5130   g_return_val_if_fail (interface_info != NULL, 0);
5131   g_return_val_if_fail (g_dbus_is_interface_name (interface_info->name), 0);
5132   g_return_val_if_fail (error == NULL || *error == NULL, 0);
5133   g_return_val_if_fail (check_initialized (connection), 0);
5134
5135   ret = 0;
5136
5137   CONNECTION_LOCK (connection);
5138
5139   eo = g_hash_table_lookup (connection->map_object_path_to_eo, object_path);
5140   if (eo == NULL)
5141     {
5142       eo = g_new0 (ExportedObject, 1);
5143       eo->object_path = g_strdup (object_path);
5144       eo->connection = connection;
5145       eo->map_if_name_to_ei = g_hash_table_new_full (g_str_hash,
5146                                                      g_str_equal,
5147                                                      NULL,
5148                                                      (GDestroyNotify) exported_interface_free);
5149       g_hash_table_insert (connection->map_object_path_to_eo, eo->object_path, eo);
5150     }
5151
5152   ei = g_hash_table_lookup (eo->map_if_name_to_ei, interface_info->name);
5153   if (ei != NULL)
5154     {
5155       g_set_error (error,
5156                    G_IO_ERROR,
5157                    G_IO_ERROR_EXISTS,
5158                    _("An object is already exported for the interface %s at %s"),
5159                    interface_info->name,
5160                    object_path);
5161       goto out;
5162     }
5163
5164   ei = g_new0 (ExportedInterface, 1);
5165   ei->id = g_atomic_int_add (&_global_registration_id, 1); /* TODO: overflow etc. */
5166   ei->eo = eo;
5167   ei->user_data = user_data;
5168   ei->user_data_free_func = user_data_free_func;
5169   ei->vtable = _g_dbus_interface_vtable_copy (vtable);
5170   ei->interface_info = g_dbus_interface_info_ref (interface_info);
5171   g_dbus_interface_info_cache_build (ei->interface_info);
5172   ei->interface_name = g_strdup (interface_info->name);
5173   ei->context = g_main_context_ref_thread_default ();
5174
5175   g_hash_table_insert (eo->map_if_name_to_ei,
5176                        (gpointer) ei->interface_name,
5177                        ei);
5178   g_hash_table_insert (connection->map_id_to_ei,
5179                        GUINT_TO_POINTER (ei->id),
5180                        ei);
5181
5182   ret = ei->id;
5183
5184  out:
5185   CONNECTION_UNLOCK (connection);
5186
5187   return ret;
5188 }
5189
5190 /**
5191  * g_dbus_connection_unregister_object:
5192  * @connection: a #GDBusConnection
5193  * @registration_id: a registration id obtained from
5194  *     g_dbus_connection_register_object()
5195  *
5196  * Unregisters an object.
5197  *
5198  * Returns: %TRUE if the object was unregistered, %FALSE otherwise
5199  *
5200  * Since: 2.26
5201  */
5202 gboolean
5203 g_dbus_connection_unregister_object (GDBusConnection *connection,
5204                                      guint            registration_id)
5205 {
5206   ExportedInterface *ei;
5207   ExportedObject *eo;
5208   gboolean ret;
5209
5210   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), FALSE);
5211   g_return_val_if_fail (check_initialized (connection), FALSE);
5212
5213   ret = FALSE;
5214
5215   CONNECTION_LOCK (connection);
5216
5217   ei = g_hash_table_lookup (connection->map_id_to_ei,
5218                             GUINT_TO_POINTER (registration_id));
5219   if (ei == NULL)
5220     goto out;
5221
5222   eo = ei->eo;
5223
5224   g_warn_if_fail (g_hash_table_remove (connection->map_id_to_ei, GUINT_TO_POINTER (ei->id)));
5225   g_warn_if_fail (g_hash_table_remove (eo->map_if_name_to_ei, ei->interface_name));
5226   /* unregister object path if we have no more exported interfaces */
5227   if (g_hash_table_size (eo->map_if_name_to_ei) == 0)
5228     g_warn_if_fail (g_hash_table_remove (connection->map_object_path_to_eo,
5229                                          eo->object_path));
5230
5231   ret = TRUE;
5232
5233  out:
5234   CONNECTION_UNLOCK (connection);
5235
5236   return ret;
5237 }
5238
5239 typedef struct {
5240   GClosure *method_call_closure;
5241   GClosure *get_property_closure;
5242   GClosure *set_property_closure;
5243 } RegisterObjectData;
5244
5245 static RegisterObjectData *
5246 register_object_data_new (GClosure *method_call_closure,
5247                           GClosure *get_property_closure,
5248                           GClosure *set_property_closure)
5249 {
5250   RegisterObjectData *data;
5251
5252   data = g_new0 (RegisterObjectData, 1);
5253
5254   if (method_call_closure != NULL)
5255     {
5256       data->method_call_closure = g_closure_ref (method_call_closure);
5257       g_closure_sink (method_call_closure);
5258       if (G_CLOSURE_NEEDS_MARSHAL (method_call_closure))
5259         g_closure_set_marshal (method_call_closure, g_cclosure_marshal_generic);
5260     }
5261
5262   if (get_property_closure != NULL)
5263     {
5264       data->get_property_closure = g_closure_ref (get_property_closure);
5265       g_closure_sink (get_property_closure);
5266       if (G_CLOSURE_NEEDS_MARSHAL (get_property_closure))
5267         g_closure_set_marshal (get_property_closure, g_cclosure_marshal_generic);
5268     }
5269
5270   if (set_property_closure != NULL)
5271     {
5272       data->set_property_closure = g_closure_ref (set_property_closure);
5273       g_closure_sink (set_property_closure);
5274       if (G_CLOSURE_NEEDS_MARSHAL (set_property_closure))
5275         g_closure_set_marshal (set_property_closure, g_cclosure_marshal_generic);
5276     }
5277
5278   return data;
5279 }
5280
5281 static void
5282 register_object_free_func (gpointer user_data)
5283 {
5284   RegisterObjectData *data = user_data;
5285
5286   g_clear_pointer (&data->method_call_closure, g_closure_unref);
5287   g_clear_pointer (&data->get_property_closure, g_closure_unref);
5288   g_clear_pointer (&data->set_property_closure, g_closure_unref);
5289
5290   g_free (data);
5291 }
5292
5293 static void
5294 register_with_closures_on_method_call (GDBusConnection       *connection,
5295                                        const gchar           *sender,
5296                                        const gchar           *object_path,
5297                                        const gchar           *interface_name,
5298                                        const gchar           *method_name,
5299                                        GVariant              *parameters,
5300                                        GDBusMethodInvocation *invocation,
5301                                        gpointer               user_data)
5302 {
5303   RegisterObjectData *data = user_data;
5304   GValue params[] = { G_VALUE_INIT, G_VALUE_INIT, G_VALUE_INIT, G_VALUE_INIT, G_VALUE_INIT, G_VALUE_INIT, G_VALUE_INIT };
5305
5306   g_value_init (&params[0], G_TYPE_DBUS_CONNECTION);
5307   g_value_set_object (&params[0], connection);
5308
5309   g_value_init (&params[1], G_TYPE_STRING);
5310   g_value_set_string (&params[1], sender);
5311
5312   g_value_init (&params[2], G_TYPE_STRING);
5313   g_value_set_string (&params[2], object_path);
5314
5315   g_value_init (&params[3], G_TYPE_STRING);
5316   g_value_set_string (&params[3], interface_name);
5317
5318   g_value_init (&params[4], G_TYPE_STRING);
5319   g_value_set_string (&params[4], method_name);
5320
5321   g_value_init (&params[5], G_TYPE_VARIANT);
5322   g_value_set_variant (&params[5], parameters);
5323
5324   g_value_init (&params[6], G_TYPE_DBUS_METHOD_INVOCATION);
5325   g_value_set_object (&params[6], invocation);
5326
5327   g_closure_invoke (data->method_call_closure, NULL, G_N_ELEMENTS (params), params, NULL);
5328
5329   g_value_unset (params + 0);
5330   g_value_unset (params + 1);
5331   g_value_unset (params + 2);
5332   g_value_unset (params + 3);
5333   g_value_unset (params + 4);
5334   g_value_unset (params + 5);
5335   g_value_unset (params + 6);
5336 }
5337
5338 static GVariant *
5339 register_with_closures_on_get_property (GDBusConnection *connection,
5340                                         const gchar     *sender,
5341                                         const gchar     *object_path,
5342                                         const gchar     *interface_name,
5343                                         const gchar     *property_name,
5344                                         GError         **error,
5345                                         gpointer         user_data)
5346 {
5347   RegisterObjectData *data = user_data;
5348   GValue params[] = { G_VALUE_INIT, G_VALUE_INIT, G_VALUE_INIT, G_VALUE_INIT, G_VALUE_INIT };
5349   GValue result_value = G_VALUE_INIT;
5350   GVariant *result;
5351
5352   g_value_init (&params[0], G_TYPE_DBUS_CONNECTION);
5353   g_value_set_object (&params[0], connection);
5354
5355   g_value_init (&params[1], G_TYPE_STRING);
5356   g_value_set_string (&params[1], sender);
5357
5358   g_value_init (&params[2], G_TYPE_STRING);
5359   g_value_set_string (&params[2], object_path);
5360
5361   g_value_init (&params[3], G_TYPE_STRING);
5362   g_value_set_string (&params[3], interface_name);
5363
5364   g_value_init (&params[4], G_TYPE_STRING);
5365   g_value_set_string (&params[4], property_name);
5366
5367   g_value_init (&result_value, G_TYPE_VARIANT);
5368
5369   g_closure_invoke (data->get_property_closure, &result_value, G_N_ELEMENTS (params), params, NULL);
5370
5371   result = g_value_get_variant (&result_value);
5372   if (result)
5373     g_variant_ref (result);
5374
5375   g_value_unset (params + 0);
5376   g_value_unset (params + 1);
5377   g_value_unset (params + 2);
5378   g_value_unset (params + 3);
5379   g_value_unset (params + 4);
5380   g_value_unset (&result_value);
5381
5382   if (!result)
5383     g_set_error (error, G_DBUS_ERROR, G_DBUS_ERROR_FAILED,
5384                  _("Unable to retrieve property %s.%s"),
5385                  interface_name, property_name);
5386
5387   return result;
5388 }
5389
5390 static gboolean
5391 register_with_closures_on_set_property (GDBusConnection *connection,
5392                                         const gchar     *sender,
5393                                         const gchar     *object_path,
5394                                         const gchar     *interface_name,
5395                                         const gchar     *property_name,
5396                                         GVariant        *value,
5397                                         GError         **error,
5398                                         gpointer         user_data)
5399 {
5400   RegisterObjectData *data = user_data;
5401   GValue params[] = { G_VALUE_INIT, G_VALUE_INIT, G_VALUE_INIT, G_VALUE_INIT, G_VALUE_INIT, G_VALUE_INIT };
5402   GValue result_value = G_VALUE_INIT;
5403   gboolean result;
5404
5405   g_value_init (&params[0], G_TYPE_DBUS_CONNECTION);
5406   g_value_set_object (&params[0], connection);
5407
5408   g_value_init (&params[1], G_TYPE_STRING);
5409   g_value_set_string (&params[1], sender);
5410
5411   g_value_init (&params[2], G_TYPE_STRING);
5412   g_value_set_string (&params[2], object_path);
5413
5414   g_value_init (&params[3], G_TYPE_STRING);
5415   g_value_set_string (&params[3], interface_name);
5416
5417   g_value_init (&params[4], G_TYPE_STRING);
5418   g_value_set_string (&params[4], property_name);
5419
5420   g_value_init (&params[5], G_TYPE_VARIANT);
5421   g_value_set_variant (&params[5], value);
5422
5423   g_value_init (&result_value, G_TYPE_BOOLEAN);
5424
5425   g_closure_invoke (data->set_property_closure, &result_value, G_N_ELEMENTS (params), params, NULL);
5426
5427   result = g_value_get_boolean (&result_value);
5428
5429   g_value_unset (params + 0);
5430   g_value_unset (params + 1);
5431   g_value_unset (params + 2);
5432   g_value_unset (params + 3);
5433   g_value_unset (params + 4);
5434   g_value_unset (params + 5);
5435   g_value_unset (&result_value);
5436
5437   if (!result)
5438     g_set_error (error,
5439                  G_DBUS_ERROR, G_DBUS_ERROR_FAILED,
5440                  _("Unable to set property %s.%s"),
5441                  interface_name, property_name);
5442
5443   return result;
5444 }
5445
5446 /**
5447  * g_dbus_connection_register_object_with_closures: (rename-to g_dbus_connection_register_object)
5448  * @connection: A #GDBusConnection.
5449  * @object_path: The object path to register at.
5450  * @interface_info: Introspection data for the interface.
5451  * @method_call_closure: (nullable): #GClosure for handling incoming method calls.
5452  * @get_property_closure: (nullable): #GClosure for getting a property.
5453  * @set_property_closure: (nullable): #GClosure for setting a property.
5454  * @error: Return location for error or %NULL.
5455  *
5456  * Version of g_dbus_connection_register_object() using closures instead of a
5457  * #GDBusInterfaceVTable for easier binding in other languages.
5458  *
5459  * Returns: 0 if @error is set, otherwise a registration id (never 0)
5460  * that can be used with g_dbus_connection_unregister_object() .
5461  *
5462  * Since: 2.46
5463  */
5464 guint
5465 g_dbus_connection_register_object_with_closures (GDBusConnection     *connection,
5466                                                  const gchar         *object_path,
5467                                                  GDBusInterfaceInfo  *interface_info,
5468                                                  GClosure            *method_call_closure,
5469                                                  GClosure            *get_property_closure,
5470                                                  GClosure            *set_property_closure,
5471                                                  GError             **error)
5472 {
5473   RegisterObjectData *data;
5474   GDBusInterfaceVTable vtable =
5475     {
5476       method_call_closure != NULL  ? register_with_closures_on_method_call  : NULL,
5477       get_property_closure != NULL ? register_with_closures_on_get_property : NULL,
5478       set_property_closure != NULL ? register_with_closures_on_set_property : NULL
5479     };
5480
5481   data = register_object_data_new (method_call_closure, get_property_closure, set_property_closure);
5482
5483   return g_dbus_connection_register_object (connection,
5484                                             object_path,
5485                                             interface_info,
5486                                             &vtable,
5487                                             data,
5488                                             register_object_free_func,
5489                                             error);
5490 }
5491
5492 /* ---------------------------------------------------------------------------------------------------- */
5493
5494 /**
5495  * g_dbus_connection_emit_signal:
5496  * @connection: a #GDBusConnection
5497  * @destination_bus_name: (nullable): the unique bus name for the destination
5498  *     for the signal or %NULL to emit to all listeners
5499  * @object_path: path of remote object
5500  * @interface_name: D-Bus interface to emit a signal on
5501  * @signal_name: the name of the signal to emit
5502  * @parameters: (nullable): a #GVariant tuple with parameters for the signal
5503  *              or %NULL if not passing parameters
5504  * @error: Return location for error or %NULL
5505  *
5506  * Emits a signal.
5507  *
5508  * If the parameters GVariant is floating, it is consumed.
5509  *
5510  * This can only fail if @parameters is not compatible with the D-Bus protocol
5511  * (%G_IO_ERROR_INVALID_ARGUMENT), or if @connection has been closed
5512  * (%G_IO_ERROR_CLOSED).
5513  *
5514  * Returns: %TRUE unless @error is set
5515  *
5516  * Since: 2.26
5517  */
5518 gboolean
5519 g_dbus_connection_emit_signal (GDBusConnection  *connection,
5520                                const gchar      *destination_bus_name,
5521                                const gchar      *object_path,
5522                                const gchar      *interface_name,
5523                                const gchar      *signal_name,
5524                                GVariant         *parameters,
5525                                GError          **error)
5526 {
5527   GDBusMessage *message;
5528   gboolean ret;
5529
5530   message = NULL;
5531   ret = FALSE;
5532
5533   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), FALSE);
5534   g_return_val_if_fail (destination_bus_name == NULL || g_dbus_is_name (destination_bus_name), FALSE);
5535   g_return_val_if_fail (object_path != NULL && g_variant_is_object_path (object_path), FALSE);
5536   g_return_val_if_fail (interface_name != NULL && g_dbus_is_interface_name (interface_name), FALSE);
5537   g_return_val_if_fail (signal_name != NULL && g_dbus_is_member_name (signal_name), FALSE);
5538   g_return_val_if_fail (parameters == NULL || g_variant_is_of_type (parameters, G_VARIANT_TYPE_TUPLE), FALSE);
5539   g_return_val_if_fail (check_initialized (connection), FALSE);
5540
5541   if (G_UNLIKELY (_g_dbus_debug_emission ()))
5542     {
5543       _g_dbus_debug_print_lock ();
5544       g_print ("========================================================================\n"
5545                "GDBus-debug:Emission:\n"
5546                " >>>> SIGNAL EMISSION %s.%s()\n"
5547                "      on object %s\n"
5548                "      destination %s\n",
5549                interface_name, signal_name,
5550                object_path,
5551                destination_bus_name != NULL ? destination_bus_name : "(none)");
5552       _g_dbus_debug_print_unlock ();
5553     }
5554
5555   message = g_dbus_message_new_signal (object_path,
5556                                        interface_name,
5557                                        signal_name);
5558
5559   if (destination_bus_name != NULL)
5560     g_dbus_message_set_header (message,
5561                                G_DBUS_MESSAGE_HEADER_FIELD_DESTINATION,
5562                                g_variant_new_string (destination_bus_name));
5563
5564   if (parameters != NULL)
5565     g_dbus_message_set_body (message, parameters);
5566
5567   ret = g_dbus_connection_send_message (connection, message, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, error);
5568   g_object_unref (message);
5569
5570   return ret;
5571 }
5572
5573 static void
5574 add_call_flags (GDBusMessage           *message,
5575                          GDBusCallFlags  flags)
5576 {
5577   GDBusMessageFlags msg_flags = 0;
5578
5579   if (flags & G_DBUS_CALL_FLAGS_NO_AUTO_START)
5580     msg_flags |= G_DBUS_MESSAGE_FLAGS_NO_AUTO_START;
5581   if (flags & G_DBUS_CALL_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION)
5582     msg_flags |= G_DBUS_MESSAGE_FLAGS_ALLOW_INTERACTIVE_AUTHORIZATION;
5583   if (msg_flags)
5584     g_dbus_message_set_flags (message, msg_flags);
5585 }
5586
5587 static GVariant *
5588 decode_method_reply (GDBusMessage        *reply,
5589                      const gchar         *method_name,
5590                      const GVariantType  *reply_type,
5591                      GUnixFDList        **out_fd_list,
5592                      GError             **error)
5593 {
5594   GVariant *result;
5595
5596   result = NULL;
5597   switch (g_dbus_message_get_message_type (reply))
5598     {
5599     case G_DBUS_MESSAGE_TYPE_METHOD_RETURN:
5600       result = g_dbus_message_get_body (reply);
5601       if (result == NULL)
5602         {
5603           result = g_variant_new ("()");
5604           g_variant_ref_sink (result);
5605         }
5606       else
5607         {
5608           g_variant_ref (result);
5609         }
5610
5611       if (!g_variant_is_of_type (result, reply_type))
5612         {
5613           gchar *type_string = g_variant_type_dup_string (reply_type);
5614
5615           g_set_error (error,
5616                        G_IO_ERROR,
5617                        G_IO_ERROR_INVALID_ARGUMENT,
5618                        _("Method ā€œ%sā€ returned type ā€œ%sā€, but expected ā€œ%sā€"),
5619                        method_name, g_variant_get_type_string (result), type_string);
5620
5621           g_variant_unref (result);
5622           g_free (type_string);
5623           result = NULL;
5624         }
5625
5626 #ifdef G_OS_UNIX
5627       if (result != NULL)
5628         {
5629           if (out_fd_list != NULL)
5630             {
5631               *out_fd_list = g_dbus_message_get_unix_fd_list (reply);
5632               if (*out_fd_list != NULL)
5633                 g_object_ref (*out_fd_list);
5634             }
5635         }
5636 #endif
5637       break;
5638
5639     case G_DBUS_MESSAGE_TYPE_ERROR:
5640       g_dbus_message_to_gerror (reply, error);
5641       break;
5642
5643     default:
5644       g_assert_not_reached ();
5645       break;
5646     }
5647
5648   return result;
5649 }
5650
5651
5652 typedef struct
5653 {
5654   GVariantType *reply_type;
5655   gchar *method_name; /* for error message */
5656
5657   GUnixFDList *fd_list;
5658 } CallState;
5659
5660 static void
5661 call_state_free (CallState *state)
5662 {
5663   g_variant_type_free (state->reply_type);
5664   g_free (state->method_name);
5665
5666   if (state->fd_list != NULL)
5667     g_object_unref (state->fd_list);
5668   g_slice_free (CallState, state);
5669 }
5670
5671 /* called in any thread, with the connection's lock not held */
5672 static void
5673 g_dbus_connection_call_done (GObject      *source,
5674                              GAsyncResult *result,
5675                              gpointer      user_data)
5676 {
5677   GDBusConnection *connection = G_DBUS_CONNECTION (source);
5678   GTask *task = user_data;
5679   CallState *state = g_task_get_task_data (task);
5680   GError *error = NULL;
5681   GDBusMessage *reply;
5682   GVariant *value = NULL;
5683
5684   reply = g_dbus_connection_send_message_with_reply_finish (connection,
5685                                                             result,
5686                                                             &error);
5687
5688   if (G_UNLIKELY (_g_dbus_debug_call ()))
5689     {
5690       _g_dbus_debug_print_lock ();
5691       g_print ("========================================================================\n"
5692                "GDBus-debug:Call:\n"
5693                " <<<< ASYNC COMPLETE %s() (serial %d)\n"
5694                "      ",
5695                state->method_name,
5696                g_dbus_message_get_reply_serial (reply));
5697       if (reply != NULL)
5698         {
5699           g_print ("SUCCESS\n");
5700         }
5701       else
5702         {
5703           g_print ("FAILED: %s\n",
5704                    error->message);
5705         }
5706       _g_dbus_debug_print_unlock ();
5707     }
5708
5709   if (reply != NULL)
5710     value = decode_method_reply (reply, state->method_name, state->reply_type, &state->fd_list, &error);
5711
5712   if (error != NULL)
5713     g_task_return_error (task, error);
5714   else
5715     g_task_return_pointer (task, value, (GDestroyNotify) g_variant_unref);
5716
5717   g_clear_object (&reply);
5718   g_object_unref (task);
5719 }
5720
5721 /* called in any thread, with the connection's lock not held */
5722 static void
5723 g_dbus_connection_call_internal (GDBusConnection        *connection,
5724                                  const gchar            *bus_name,
5725                                  const gchar            *object_path,
5726                                  const gchar            *interface_name,
5727                                  const gchar            *method_name,
5728                                  GVariant               *parameters,
5729                                  const GVariantType     *reply_type,
5730                                  GDBusCallFlags          flags,
5731                                  gint                    timeout_msec,
5732                                  GUnixFDList            *fd_list,
5733                                  GCancellable           *cancellable,
5734                                  GAsyncReadyCallback     callback,
5735                                  gpointer                user_data)
5736 {
5737   GDBusMessage *message;
5738   guint32 serial;
5739
5740   g_return_if_fail (G_IS_DBUS_CONNECTION (connection));
5741   g_return_if_fail (bus_name == NULL || g_dbus_is_name (bus_name));
5742   g_return_if_fail (object_path != NULL && g_variant_is_object_path (object_path));
5743   g_return_if_fail (interface_name != NULL && g_dbus_is_interface_name (interface_name));
5744   g_return_if_fail (method_name != NULL && g_dbus_is_member_name (method_name));
5745   g_return_if_fail (timeout_msec >= 0 || timeout_msec == -1);
5746   g_return_if_fail ((parameters == NULL) || g_variant_is_of_type (parameters, G_VARIANT_TYPE_TUPLE));
5747   g_return_if_fail (check_initialized (connection));
5748 #ifdef G_OS_UNIX
5749   g_return_if_fail (fd_list == NULL || G_IS_UNIX_FD_LIST (fd_list));
5750 #else
5751   g_return_if_fail (fd_list == NULL);
5752 #endif
5753
5754   message = g_dbus_message_new_method_call (bus_name,
5755                                             object_path,
5756                                             interface_name,
5757                                             method_name);
5758   add_call_flags (message, flags);
5759   if (parameters != NULL)
5760     g_dbus_message_set_body (message, parameters);
5761
5762 #ifdef G_OS_UNIX
5763   if (fd_list != NULL)
5764     g_dbus_message_set_unix_fd_list (message, fd_list);
5765 #endif
5766
5767   /* If the user has no callback then we can just send the message with
5768    * the G_DBUS_MESSAGE_FLAGS_NO_REPLY_EXPECTED flag set and skip all
5769    * the logic for processing the reply.  If the service sends the reply
5770    * anyway then it will just be ignored.
5771    */
5772   if (callback != NULL)
5773     {
5774       CallState *state;
5775       GTask *task;
5776
5777       state = g_slice_new0 (CallState);
5778       state->method_name = g_strjoin (".", interface_name, method_name, NULL);
5779
5780       if (reply_type == NULL)
5781         reply_type = G_VARIANT_TYPE_ANY;
5782
5783       state->reply_type = g_variant_type_copy (reply_type);
5784
5785       task = g_task_new (connection, cancellable, callback, user_data);
5786       g_task_set_source_tag (task, g_dbus_connection_call_internal);
5787       g_task_set_task_data (task, state, (GDestroyNotify) call_state_free);
5788
5789       g_dbus_connection_send_message_with_reply (connection,
5790                                                  message,
5791                                                  G_DBUS_SEND_MESSAGE_FLAGS_NONE,
5792                                                  timeout_msec,
5793                                                  &serial,
5794                                                  cancellable,
5795                                                  g_dbus_connection_call_done,
5796                                                  task);
5797     }
5798   else
5799     {
5800       GDBusMessageFlags flags;
5801
5802       flags = g_dbus_message_get_flags (message);
5803       flags |= G_DBUS_MESSAGE_FLAGS_NO_REPLY_EXPECTED;
5804       g_dbus_message_set_flags (message, flags);
5805
5806       g_dbus_connection_send_message (connection,
5807                                       message,
5808                                       G_DBUS_SEND_MESSAGE_FLAGS_NONE,
5809                                       &serial, NULL);
5810     }
5811
5812   if (G_UNLIKELY (_g_dbus_debug_call ()))
5813     {
5814       _g_dbus_debug_print_lock ();
5815       g_print ("========================================================================\n"
5816                "GDBus-debug:Call:\n"
5817                " >>>> ASYNC %s.%s()\n"
5818                "      on object %s\n"
5819                "      owned by name %s (serial %d)\n",
5820                interface_name,
5821                method_name,
5822                object_path,
5823                bus_name != NULL ? bus_name : "(none)",
5824                serial);
5825       _g_dbus_debug_print_unlock ();
5826     }
5827
5828   if (message != NULL)
5829     g_object_unref (message);
5830 }
5831
5832 /* called in any thread, with the connection's lock not held */
5833 static GVariant *
5834 g_dbus_connection_call_finish_internal (GDBusConnection  *connection,
5835                                         GUnixFDList     **out_fd_list,
5836                                         GAsyncResult     *res,
5837                                         GError          **error)
5838 {
5839   GTask *task;
5840   CallState *state;
5841   GVariant *ret;
5842
5843   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), NULL);
5844   g_return_val_if_fail (g_task_is_valid (res, connection), NULL);
5845   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
5846
5847   task = G_TASK (res);
5848   state = g_task_get_task_data (task);
5849
5850   ret = g_task_propagate_pointer (task, error);
5851   if (!ret)
5852     return NULL;
5853
5854   if (out_fd_list != NULL)
5855     *out_fd_list = state->fd_list != NULL ? g_object_ref (state->fd_list) : NULL;
5856   return ret;
5857 }
5858
5859 /* called in any user thread, with the connection's lock not held */
5860 static GVariant *
5861 g_dbus_connection_call_sync_internal (GDBusConnection         *connection,
5862                                       const gchar             *bus_name,
5863                                       const gchar             *object_path,
5864                                       const gchar             *interface_name,
5865                                       const gchar             *method_name,
5866                                       GVariant                *parameters,
5867                                       const GVariantType      *reply_type,
5868                                       GDBusCallFlags           flags,
5869                                       gint                     timeout_msec,
5870                                       GUnixFDList             *fd_list,
5871                                       GUnixFDList            **out_fd_list,
5872                                       GCancellable            *cancellable,
5873                                       GError                 **error)
5874 {
5875   GDBusMessage *message;
5876   GDBusMessage *reply;
5877   GVariant *result;
5878   GError *local_error;
5879   GDBusSendMessageFlags send_flags;
5880
5881   message = NULL;
5882   reply = NULL;
5883   result = NULL;
5884
5885   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), NULL);
5886   g_return_val_if_fail (bus_name == NULL || g_dbus_is_name (bus_name), NULL);
5887   g_return_val_if_fail (object_path != NULL && g_variant_is_object_path (object_path), NULL);
5888   g_return_val_if_fail (interface_name != NULL && g_dbus_is_interface_name (interface_name), NULL);
5889   g_return_val_if_fail (method_name != NULL && g_dbus_is_member_name (method_name), NULL);
5890   g_return_val_if_fail (timeout_msec >= 0 || timeout_msec == -1, NULL);
5891   g_return_val_if_fail ((parameters == NULL) || g_variant_is_of_type (parameters, G_VARIANT_TYPE_TUPLE), NULL);
5892 #ifdef G_OS_UNIX
5893   g_return_val_if_fail (fd_list == NULL || G_IS_UNIX_FD_LIST (fd_list), NULL);
5894 #else
5895   g_return_val_if_fail (fd_list == NULL, NULL);
5896 #endif
5897   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
5898
5899   if (!(flags & CALL_FLAGS_INITIALIZING))
5900     g_return_val_if_fail (check_initialized (connection), FALSE);
5901
5902   if (reply_type == NULL)
5903     reply_type = G_VARIANT_TYPE_ANY;
5904
5905   message = g_dbus_message_new_method_call (bus_name,
5906                                             object_path,
5907                                             interface_name,
5908                                             method_name);
5909   add_call_flags (message, flags);
5910   if (parameters != NULL)
5911     g_dbus_message_set_body (message, parameters);
5912
5913 #ifdef G_OS_UNIX
5914   if (fd_list != NULL)
5915     g_dbus_message_set_unix_fd_list (message, fd_list);
5916 #endif
5917
5918   if (G_UNLIKELY (_g_dbus_debug_call ()))
5919     {
5920       _g_dbus_debug_print_lock ();
5921       g_print ("========================================================================\n"
5922                "GDBus-debug:Call:\n"
5923                " >>>> SYNC %s.%s()\n"
5924                "      on object %s\n"
5925                "      owned by name %s\n",
5926                interface_name,
5927                method_name,
5928                object_path,
5929                bus_name != NULL ? bus_name : "(none)");
5930       _g_dbus_debug_print_unlock ();
5931     }
5932
5933   local_error = NULL;
5934
5935   send_flags = G_DBUS_SEND_MESSAGE_FLAGS_NONE;
5936
5937   /* translate from one flavour of flags to another... */
5938   if (flags & CALL_FLAGS_INITIALIZING)
5939     send_flags |= SEND_MESSAGE_FLAGS_INITIALIZING;
5940
5941   reply = g_dbus_connection_send_message_with_reply_sync (connection,
5942                                                           message,
5943                                                           send_flags,
5944                                                           timeout_msec,
5945                                                           NULL, /* volatile guint32 *out_serial */
5946                                                           cancellable,
5947                                                           &local_error);
5948
5949   if (G_UNLIKELY (_g_dbus_debug_call ()))
5950     {
5951       _g_dbus_debug_print_lock ();
5952       g_print ("========================================================================\n"
5953                "GDBus-debug:Call:\n"
5954                " <<<< SYNC COMPLETE %s.%s()\n"
5955                "      ",
5956                interface_name,
5957                method_name);
5958       if (reply != NULL)
5959         {
5960           g_print ("SUCCESS\n");
5961         }
5962       else
5963         {
5964           g_print ("FAILED: %s\n",
5965                    local_error->message);
5966         }
5967       _g_dbus_debug_print_unlock ();
5968     }
5969
5970   if (reply == NULL)
5971     {
5972       if (error != NULL)
5973         *error = local_error;
5974       else
5975         g_error_free (local_error);
5976       goto out;
5977     }
5978
5979   result = decode_method_reply (reply, method_name, reply_type, out_fd_list, error);
5980
5981  out:
5982   if (message != NULL)
5983     g_object_unref (message);
5984   if (reply != NULL)
5985     g_object_unref (reply);
5986
5987   return result;
5988 }
5989
5990 /* ---------------------------------------------------------------------------------------------------- */
5991
5992 /**
5993  * g_dbus_connection_call:
5994  * @connection: a #GDBusConnection
5995  * @bus_name: (nullable): a unique or well-known bus name or %NULL if
5996  *     @connection is not a message bus connection
5997  * @object_path: path of remote object
5998  * @interface_name: D-Bus interface to invoke method on
5999  * @method_name: the name of the method to invoke
6000  * @parameters: (nullable): a #GVariant tuple with parameters for the method
6001  *     or %NULL if not passing parameters
6002  * @reply_type: (nullable): the expected type of the reply (which will be a
6003  *     tuple), or %NULL
6004  * @flags: flags from the #GDBusCallFlags enumeration
6005  * @timeout_msec: the timeout in milliseconds, -1 to use the default
6006  *     timeout or %G_MAXINT for no timeout
6007  * @cancellable: (nullable): a #GCancellable or %NULL
6008  * @callback: (nullable): a #GAsyncReadyCallback to call when the request
6009  *     is satisfied or %NULL if you don't care about the result of the
6010  *     method invocation
6011  * @user_data: the data to pass to @callback
6012  *
6013  * Asynchronously invokes the @method_name method on the
6014  * @interface_name D-Bus interface on the remote object at
6015  * @object_path owned by @bus_name.
6016  *
6017  * If @connection is closed then the operation will fail with
6018  * %G_IO_ERROR_CLOSED. If @cancellable is canceled, the operation will
6019  * fail with %G_IO_ERROR_CANCELLED. If @parameters contains a value
6020  * not compatible with the D-Bus protocol, the operation fails with
6021  * %G_IO_ERROR_INVALID_ARGUMENT.
6022  *
6023  * If @reply_type is non-%NULL then the reply will be checked for having this type and an
6024  * error will be raised if it does not match.  Said another way, if you give a @reply_type
6025  * then any non-%NULL return value will be of this type. Unless itā€™s
6026  * %G_VARIANT_TYPE_UNIT, the @reply_type will be a tuple containing one or more
6027  * values.
6028  *
6029  * If the @parameters #GVariant is floating, it is consumed. This allows
6030  * convenient 'inline' use of g_variant_new(), e.g.:
6031  * |[<!-- language="C" -->
6032  *  g_dbus_connection_call (connection,
6033  *                          "org.freedesktop.StringThings",
6034  *                          "/org/freedesktop/StringThings",
6035  *                          "org.freedesktop.StringThings",
6036  *                          "TwoStrings",
6037  *                          g_variant_new ("(ss)",
6038  *                                         "Thing One",
6039  *                                         "Thing Two"),
6040  *                          NULL,
6041  *                          G_DBUS_CALL_FLAGS_NONE,
6042  *                          -1,
6043  *                          NULL,
6044  *                          (GAsyncReadyCallback) two_strings_done,
6045  *                          NULL);
6046  * ]|
6047  *
6048  * This is an asynchronous method. When the operation is finished,
6049  * @callback will be invoked in the
6050  * [thread-default main context][g-main-context-push-thread-default]
6051  * of the thread you are calling this method from. You can then call
6052  * g_dbus_connection_call_finish() to get the result of the operation.
6053  * See g_dbus_connection_call_sync() for the synchronous version of this
6054  * function.
6055  *
6056  * If @callback is %NULL then the D-Bus method call message will be sent with
6057  * the %G_DBUS_MESSAGE_FLAGS_NO_REPLY_EXPECTED flag set.
6058  *
6059  * Since: 2.26
6060  */
6061 void
6062 g_dbus_connection_call (GDBusConnection     *connection,
6063                         const gchar         *bus_name,
6064                         const gchar         *object_path,
6065                         const gchar         *interface_name,
6066                         const gchar         *method_name,
6067                         GVariant            *parameters,
6068                         const GVariantType  *reply_type,
6069                         GDBusCallFlags       flags,
6070                         gint                 timeout_msec,
6071                         GCancellable        *cancellable,
6072                         GAsyncReadyCallback  callback,
6073                         gpointer             user_data)
6074 {
6075   g_dbus_connection_call_internal (connection, bus_name, object_path, interface_name, method_name, parameters, reply_type, flags, timeout_msec, NULL, cancellable, callback, user_data);
6076 }
6077
6078 /**
6079  * g_dbus_connection_call_finish:
6080  * @connection: a #GDBusConnection
6081  * @res: a #GAsyncResult obtained from the #GAsyncReadyCallback passed to g_dbus_connection_call()
6082  * @error: return location for error or %NULL
6083  *
6084  * Finishes an operation started with g_dbus_connection_call().
6085  *
6086  * Returns: %NULL if @error is set. Otherwise a #GVariant tuple with
6087  *     return values. Free with g_variant_unref().
6088  *
6089  * Since: 2.26
6090  */
6091 GVariant *
6092 g_dbus_connection_call_finish (GDBusConnection  *connection,
6093                                GAsyncResult     *res,
6094                                GError          **error)
6095 {
6096   return g_dbus_connection_call_finish_internal (connection, NULL, res, error);
6097 }
6098
6099 /**
6100  * g_dbus_connection_call_sync:
6101  * @connection: a #GDBusConnection
6102  * @bus_name: (nullable): a unique or well-known bus name or %NULL if
6103  *     @connection is not a message bus connection
6104  * @object_path: path of remote object
6105  * @interface_name: D-Bus interface to invoke method on
6106  * @method_name: the name of the method to invoke
6107  * @parameters: (nullable): a #GVariant tuple with parameters for the method
6108  *     or %NULL if not passing parameters
6109  * @reply_type: (nullable): the expected type of the reply, or %NULL
6110  * @flags: flags from the #GDBusCallFlags enumeration
6111  * @timeout_msec: the timeout in milliseconds, -1 to use the default
6112  *     timeout or %G_MAXINT for no timeout
6113  * @cancellable: (nullable): a #GCancellable or %NULL
6114  * @error: return location for error or %NULL
6115  *
6116  * Synchronously invokes the @method_name method on the
6117  * @interface_name D-Bus interface on the remote object at
6118  * @object_path owned by @bus_name.
6119  *
6120  * If @connection is closed then the operation will fail with
6121  * %G_IO_ERROR_CLOSED. If @cancellable is canceled, the
6122  * operation will fail with %G_IO_ERROR_CANCELLED. If @parameters
6123  * contains a value not compatible with the D-Bus protocol, the operation
6124  * fails with %G_IO_ERROR_INVALID_ARGUMENT.
6125  *
6126  * If @reply_type is non-%NULL then the reply will be checked for having
6127  * this type and an error will be raised if it does not match.  Said
6128  * another way, if you give a @reply_type then any non-%NULL return
6129  * value will be of this type.
6130  *
6131  * If the @parameters #GVariant is floating, it is consumed.
6132  * This allows convenient 'inline' use of g_variant_new(), e.g.:
6133  * |[<!-- language="C" -->
6134  *  g_dbus_connection_call_sync (connection,
6135  *                               "org.freedesktop.StringThings",
6136  *                               "/org/freedesktop/StringThings",
6137  *                               "org.freedesktop.StringThings",
6138  *                               "TwoStrings",
6139  *                               g_variant_new ("(ss)",
6140  *                                              "Thing One",
6141  *                                              "Thing Two"),
6142  *                               NULL,
6143  *                               G_DBUS_CALL_FLAGS_NONE,
6144  *                               -1,
6145  *                               NULL,
6146  *                               &error);
6147  * ]|
6148  *
6149  * The calling thread is blocked until a reply is received. See
6150  * g_dbus_connection_call() for the asynchronous version of
6151  * this method.
6152  *
6153  * Returns: %NULL if @error is set. Otherwise a #GVariant tuple with
6154  *     return values. Free with g_variant_unref().
6155  *
6156  * Since: 2.26
6157  */
6158 GVariant *
6159 g_dbus_connection_call_sync (GDBusConnection     *connection,
6160                              const gchar         *bus_name,
6161                              const gchar         *object_path,
6162                              const gchar         *interface_name,
6163                              const gchar         *method_name,
6164                              GVariant            *parameters,
6165                              const GVariantType  *reply_type,
6166                              GDBusCallFlags       flags,
6167                              gint                 timeout_msec,
6168                              GCancellable        *cancellable,
6169                              GError             **error)
6170 {
6171   return g_dbus_connection_call_sync_internal (connection, bus_name, object_path, interface_name, method_name, parameters, reply_type, flags, timeout_msec, NULL, NULL, cancellable, error);
6172 }
6173
6174 /* ---------------------------------------------------------------------------------------------------- */
6175
6176 #ifdef G_OS_UNIX
6177
6178 /**
6179  * g_dbus_connection_call_with_unix_fd_list:
6180  * @connection: a #GDBusConnection
6181  * @bus_name: (nullable): a unique or well-known bus name or %NULL if
6182  *     @connection is not a message bus connection
6183  * @object_path: path of remote object
6184  * @interface_name: D-Bus interface to invoke method on
6185  * @method_name: the name of the method to invoke
6186  * @parameters: (nullable): a #GVariant tuple with parameters for the method
6187  *     or %NULL if not passing parameters
6188  * @reply_type: (nullable): the expected type of the reply, or %NULL
6189  * @flags: flags from the #GDBusCallFlags enumeration
6190  * @timeout_msec: the timeout in milliseconds, -1 to use the default
6191  *     timeout or %G_MAXINT for no timeout
6192  * @fd_list: (nullable): a #GUnixFDList or %NULL
6193  * @cancellable: (nullable): a #GCancellable or %NULL
6194  * @callback: (nullable): a #GAsyncReadyCallback to call when the request is
6195  *     satisfied or %NULL if you don't * care about the result of the
6196  *     method invocation
6197  * @user_data: The data to pass to @callback.
6198  *
6199  * Like g_dbus_connection_call() but also takes a #GUnixFDList object.
6200  *
6201  * This method is only available on UNIX.
6202  *
6203  * Since: 2.30
6204  */
6205 void
6206 g_dbus_connection_call_with_unix_fd_list (GDBusConnection     *connection,
6207                                           const gchar         *bus_name,
6208                                           const gchar         *object_path,
6209                                           const gchar         *interface_name,
6210                                           const gchar         *method_name,
6211                                           GVariant            *parameters,
6212                                           const GVariantType  *reply_type,
6213                                           GDBusCallFlags       flags,
6214                                           gint                 timeout_msec,
6215                                           GUnixFDList         *fd_list,
6216                                           GCancellable        *cancellable,
6217                                           GAsyncReadyCallback  callback,
6218                                           gpointer             user_data)
6219 {
6220   g_dbus_connection_call_internal (connection, bus_name, object_path, interface_name, method_name, parameters, reply_type, flags, timeout_msec, fd_list, cancellable, callback, user_data);
6221 }
6222
6223 /**
6224  * g_dbus_connection_call_with_unix_fd_list_finish:
6225  * @connection: a #GDBusConnection
6226  * @out_fd_list: (out) (optional): return location for a #GUnixFDList or %NULL
6227  * @res: a #GAsyncResult obtained from the #GAsyncReadyCallback passed to
6228  *     g_dbus_connection_call_with_unix_fd_list()
6229  * @error: return location for error or %NULL
6230  *
6231  * Finishes an operation started with g_dbus_connection_call_with_unix_fd_list().
6232  *
6233  * Returns: %NULL if @error is set. Otherwise a #GVariant tuple with
6234  *     return values. Free with g_variant_unref().
6235  *
6236  * Since: 2.30
6237  */
6238 GVariant *
6239 g_dbus_connection_call_with_unix_fd_list_finish (GDBusConnection  *connection,
6240                                                  GUnixFDList     **out_fd_list,
6241                                                  GAsyncResult     *res,
6242                                                  GError          **error)
6243 {
6244   return g_dbus_connection_call_finish_internal (connection, out_fd_list, res, error);
6245 }
6246
6247 /**
6248  * g_dbus_connection_call_with_unix_fd_list_sync:
6249  * @connection: a #GDBusConnection
6250  * @bus_name: (nullable): a unique or well-known bus name or %NULL
6251  *     if @connection is not a message bus connection
6252  * @object_path: path of remote object
6253  * @interface_name: D-Bus interface to invoke method on
6254  * @method_name: the name of the method to invoke
6255  * @parameters: (nullable): a #GVariant tuple with parameters for
6256  *     the method or %NULL if not passing parameters
6257  * @reply_type: (nullable): the expected type of the reply, or %NULL
6258  * @flags: flags from the #GDBusCallFlags enumeration
6259  * @timeout_msec: the timeout in milliseconds, -1 to use the default
6260  *     timeout or %G_MAXINT for no timeout
6261  * @fd_list: (nullable): a #GUnixFDList or %NULL
6262  * @out_fd_list: (out) (optional): return location for a #GUnixFDList or %NULL
6263  * @cancellable: (nullable): a #GCancellable or %NULL
6264  * @error: return location for error or %NULL
6265  *
6266  * Like g_dbus_connection_call_sync() but also takes and returns #GUnixFDList objects.
6267  *
6268  * This method is only available on UNIX.
6269  *
6270  * Returns: %NULL if @error is set. Otherwise a #GVariant tuple with
6271  *     return values. Free with g_variant_unref().
6272  *
6273  * Since: 2.30
6274  */
6275 GVariant *
6276 g_dbus_connection_call_with_unix_fd_list_sync (GDBusConnection     *connection,
6277                                                const gchar         *bus_name,
6278                                                const gchar         *object_path,
6279                                                const gchar         *interface_name,
6280                                                const gchar         *method_name,
6281                                                GVariant            *parameters,
6282                                                const GVariantType  *reply_type,
6283                                                GDBusCallFlags       flags,
6284                                                gint                 timeout_msec,
6285                                                GUnixFDList         *fd_list,
6286                                                GUnixFDList        **out_fd_list,
6287                                                GCancellable        *cancellable,
6288                                                GError             **error)
6289 {
6290   return g_dbus_connection_call_sync_internal (connection, bus_name, object_path, interface_name, method_name, parameters, reply_type, flags, timeout_msec, fd_list, out_fd_list, cancellable, error);
6291 }
6292
6293 #endif /* G_OS_UNIX */
6294
6295 /* ---------------------------------------------------------------------------------------------------- */
6296
6297 struct ExportedSubtree
6298 {
6299   guint                     id;
6300   gchar                    *object_path;
6301   GDBusConnection          *connection;
6302   GDBusSubtreeVTable       *vtable;
6303   GDBusSubtreeFlags         flags;
6304
6305   GMainContext             *context;
6306   gpointer                  user_data;
6307   GDestroyNotify            user_data_free_func;
6308 };
6309
6310 static void
6311 exported_subtree_free (ExportedSubtree *es)
6312 {
6313   call_destroy_notify (es->context,
6314                        es->user_data_free_func,
6315                        es->user_data);
6316
6317   g_main_context_unref (es->context);
6318
6319   _g_dbus_subtree_vtable_free (es->vtable);
6320   g_free (es->object_path);
6321   g_free (es);
6322 }
6323
6324 /* called without lock held in the thread where the caller registered
6325  * the subtree
6326  */
6327 static gboolean
6328 handle_subtree_introspect (GDBusConnection *connection,
6329                            ExportedSubtree *es,
6330                            GDBusMessage    *message)
6331 {
6332   GString *s;
6333   gboolean handled;
6334   GDBusMessage *reply;
6335   gchar **children;
6336   gboolean is_root;
6337   const gchar *sender;
6338   const gchar *requested_object_path;
6339   const gchar *requested_node;
6340   GDBusInterfaceInfo **interfaces;
6341   guint n;
6342   gchar **subnode_paths;
6343   gboolean has_properties_interface;
6344   gboolean has_introspectable_interface;
6345
6346   handled = FALSE;
6347
6348   requested_object_path = g_dbus_message_get_path (message);
6349   sender = g_dbus_message_get_sender (message);
6350   is_root = (g_strcmp0 (requested_object_path, es->object_path) == 0);
6351
6352   s = g_string_new (NULL);
6353   introspect_append_header (s);
6354
6355   /* Strictly we don't need the children in dynamic mode, but we avoid the
6356    * conditionals to preserve code clarity
6357    */
6358   children = es->vtable->enumerate (es->connection,
6359                                     sender,
6360                                     es->object_path,
6361                                     es->user_data);
6362
6363   if (!is_root)
6364     {
6365       requested_node = strrchr (requested_object_path, '/') + 1;
6366
6367       /* Assert existence of object if we are not dynamic */
6368       if (!(es->flags & G_DBUS_SUBTREE_FLAGS_DISPATCH_TO_UNENUMERATED_NODES) &&
6369           !_g_strv_has_string ((const gchar * const *) children, requested_node))
6370         goto out;
6371     }
6372   else
6373     {
6374       requested_node = NULL;
6375     }
6376
6377   interfaces = es->vtable->introspect (es->connection,
6378                                        sender,
6379                                        es->object_path,
6380                                        requested_node,
6381                                        es->user_data);
6382   if (interfaces != NULL)
6383     {
6384       has_properties_interface = FALSE;
6385       has_introspectable_interface = FALSE;
6386
6387       for (n = 0; interfaces[n] != NULL; n++)
6388         {
6389           if (strcmp (interfaces[n]->name, "org.freedesktop.DBus.Properties") == 0)
6390             has_properties_interface = TRUE;
6391           else if (strcmp (interfaces[n]->name, "org.freedesktop.DBus.Introspectable") == 0)
6392             has_introspectable_interface = TRUE;
6393         }
6394       if (!has_properties_interface)
6395         g_string_append (s, introspect_properties_interface);
6396       if (!has_introspectable_interface)
6397         g_string_append (s, introspect_introspectable_interface);
6398
6399       for (n = 0; interfaces[n] != NULL; n++)
6400         {
6401           g_dbus_interface_info_generate_xml (interfaces[n], 2, s);
6402           g_dbus_interface_info_unref (interfaces[n]);
6403         }
6404       g_free (interfaces);
6405     }
6406
6407   /* then include <node> entries from the Subtree for the root */
6408   if (is_root)
6409     {
6410       for (n = 0; children != NULL && children[n] != NULL; n++)
6411         g_string_append_printf (s, "  <node name=\"%s\"/>\n", children[n]);
6412     }
6413
6414   /* finally include nodes registered below us */
6415   subnode_paths = g_dbus_connection_list_registered (es->connection, requested_object_path);
6416   for (n = 0; subnode_paths != NULL && subnode_paths[n] != NULL; n++)
6417     g_string_append_printf (s, "  <node name=\"%s\"/>\n", subnode_paths[n]);
6418   g_strfreev (subnode_paths);
6419
6420   g_string_append (s, "</node>\n");
6421
6422   reply = g_dbus_message_new_method_reply (message);
6423   g_dbus_message_set_body (reply, g_variant_new ("(s)", s->str));
6424   g_dbus_connection_send_message (connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
6425   g_object_unref (reply);
6426
6427   handled = TRUE;
6428
6429  out:
6430   g_string_free (s, TRUE);
6431   g_strfreev (children);
6432   return handled;
6433 }
6434
6435 /* called without lock held in the thread where the caller registered
6436  * the subtree
6437  */
6438 static gboolean
6439 handle_subtree_method_invocation (GDBusConnection *connection,
6440                                   ExportedSubtree *es,
6441                                   GDBusMessage    *message)
6442 {
6443   gboolean handled;
6444   const gchar *sender;
6445   const gchar *interface_name;
6446   const gchar *member;
6447   const gchar *signature;
6448   const gchar *requested_object_path;
6449   const gchar *requested_node;
6450   gboolean is_root;
6451   GDBusInterfaceInfo *interface_info;
6452   const GDBusInterfaceVTable *interface_vtable;
6453   gpointer interface_user_data;
6454   guint n;
6455   GDBusInterfaceInfo **interfaces;
6456   gboolean is_property_get;
6457   gboolean is_property_set;
6458   gboolean is_property_get_all;
6459
6460   handled = FALSE;
6461   interfaces = NULL;
6462
6463   requested_object_path = g_dbus_message_get_path (message);
6464   sender = g_dbus_message_get_sender (message);
6465   interface_name = g_dbus_message_get_interface (message);
6466   member = g_dbus_message_get_member (message);
6467   signature = g_dbus_message_get_signature (message);
6468   is_root = (g_strcmp0 (requested_object_path, es->object_path) == 0);
6469
6470   is_property_get = FALSE;
6471   is_property_set = FALSE;
6472   is_property_get_all = FALSE;
6473   if (g_strcmp0 (interface_name, "org.freedesktop.DBus.Properties") == 0)
6474     {
6475       if (g_strcmp0 (member, "Get") == 0 && g_strcmp0 (signature, "ss") == 0)
6476         is_property_get = TRUE;
6477       else if (g_strcmp0 (member, "Set") == 0 && g_strcmp0 (signature, "ssv") == 0)
6478         is_property_set = TRUE;
6479       else if (g_strcmp0 (member, "GetAll") == 0 && g_strcmp0 (signature, "s") == 0)
6480         is_property_get_all = TRUE;
6481     }
6482
6483   if (!is_root)
6484     {
6485       requested_node = strrchr (requested_object_path, '/') + 1;
6486
6487       if (~es->flags & G_DBUS_SUBTREE_FLAGS_DISPATCH_TO_UNENUMERATED_NODES)
6488         {
6489           /* We don't want to dispatch to unenumerated
6490            * nodes, so ensure that the child exists.
6491            */
6492           gchar **children;
6493           gboolean exists;
6494
6495           children = es->vtable->enumerate (es->connection,
6496                                             sender,
6497                                             es->object_path,
6498                                             es->user_data);
6499
6500           exists = _g_strv_has_string ((const gchar * const *) children, requested_node);
6501           g_strfreev (children);
6502
6503           if (!exists)
6504             goto out;
6505         }
6506     }
6507   else
6508     {
6509       requested_node = NULL;
6510     }
6511
6512   /* get introspection data for the node */
6513   interfaces = es->vtable->introspect (es->connection,
6514                                        sender,
6515                                        requested_object_path,
6516                                        requested_node,
6517                                        es->user_data);
6518
6519   if (interfaces == NULL)
6520     goto out;
6521
6522   interface_info = NULL;
6523   for (n = 0; interfaces[n] != NULL; n++)
6524     {
6525       if (g_strcmp0 (interfaces[n]->name, interface_name) == 0)
6526         interface_info = interfaces[n];
6527     }
6528
6529   /* dispatch the call if the user wants to handle it */
6530   if (interface_info != NULL)
6531     {
6532       /* figure out where to dispatch the method call */
6533       interface_user_data = NULL;
6534       interface_vtable = es->vtable->dispatch (es->connection,
6535                                                sender,
6536                                                es->object_path,
6537                                                interface_name,
6538                                                requested_node,
6539                                                &interface_user_data,
6540                                                es->user_data);
6541       if (interface_vtable == NULL)
6542         goto out;
6543
6544       CONNECTION_LOCK (connection);
6545       handled = validate_and_maybe_schedule_method_call (es->connection,
6546                                                          message,
6547                                                          0,
6548                                                          es->id,
6549                                                          interface_info,
6550                                                          interface_vtable,
6551                                                          es->context,
6552                                                          interface_user_data);
6553       CONNECTION_UNLOCK (connection);
6554     }
6555   /* handle org.freedesktop.DBus.Properties interface if not explicitly handled */
6556   else if (is_property_get || is_property_set || is_property_get_all)
6557     {
6558       if (is_property_get)
6559         g_variant_get (g_dbus_message_get_body (message), "(&s&s)", &interface_name, NULL);
6560       else if (is_property_set)
6561         g_variant_get (g_dbus_message_get_body (message), "(&s&sv)", &interface_name, NULL, NULL);
6562       else if (is_property_get_all)
6563         g_variant_get (g_dbus_message_get_body (message), "(&s)", &interface_name, NULL, NULL);
6564       else
6565         g_assert_not_reached ();
6566
6567       /* see if the object supports this interface at all */
6568       for (n = 0; interfaces[n] != NULL; n++)
6569         {
6570           if (g_strcmp0 (interfaces[n]->name, interface_name) == 0)
6571             interface_info = interfaces[n];
6572         }
6573
6574       /* Fail with org.freedesktop.DBus.Error.InvalidArgs if the user-code
6575        * claims it won't support the interface
6576        */
6577       if (interface_info == NULL)
6578         {
6579           GDBusMessage *reply;
6580           reply = g_dbus_message_new_method_error (message,
6581                                                    "org.freedesktop.DBus.Error.InvalidArgs",
6582                                                    _("No such interface ā€œ%sā€"),
6583                                                    interface_name);
6584           g_dbus_connection_send_message (es->connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
6585           g_object_unref (reply);
6586           handled = TRUE;
6587           goto out;
6588         }
6589
6590       /* figure out where to dispatch the property get/set/getall calls */
6591       interface_user_data = NULL;
6592       interface_vtable = es->vtable->dispatch (es->connection,
6593                                                sender,
6594                                                es->object_path,
6595                                                interface_name,
6596                                                requested_node,
6597                                                &interface_user_data,
6598                                                es->user_data);
6599       if (interface_vtable == NULL)
6600         {
6601           g_warning ("The subtree introspection function indicates that '%s' "
6602                      "is a valid interface name, but calling the dispatch "
6603                      "function on that interface gave us NULL", interface_name);
6604           goto out;
6605         }
6606
6607       if (is_property_get || is_property_set)
6608         {
6609           CONNECTION_LOCK (connection);
6610           handled = validate_and_maybe_schedule_property_getset (es->connection,
6611                                                                  message,
6612                                                                  0,
6613                                                                  es->id,
6614                                                                  is_property_get,
6615                                                                  interface_info,
6616                                                                  interface_vtable,
6617                                                                  es->context,
6618                                                                  interface_user_data);
6619           CONNECTION_UNLOCK (connection);
6620         }
6621       else if (is_property_get_all)
6622         {
6623           CONNECTION_LOCK (connection);
6624           handled = validate_and_maybe_schedule_property_get_all (es->connection,
6625                                                                   message,
6626                                                                   0,
6627                                                                   es->id,
6628                                                                   interface_info,
6629                                                                   interface_vtable,
6630                                                                   es->context,
6631                                                                   interface_user_data);
6632           CONNECTION_UNLOCK (connection);
6633         }
6634     }
6635
6636  out:
6637   if (interfaces != NULL)
6638     {
6639       for (n = 0; interfaces[n] != NULL; n++)
6640         g_dbus_interface_info_unref (interfaces[n]);
6641       g_free (interfaces);
6642     }
6643
6644   return handled;
6645 }
6646
6647 typedef struct
6648 {
6649   GDBusMessage *message;
6650   ExportedSubtree *es;
6651 } SubtreeDeferredData;
6652
6653 static void
6654 subtree_deferred_data_free (SubtreeDeferredData *data)
6655 {
6656   g_object_unref (data->message);
6657   g_free (data);
6658 }
6659
6660 /* called without lock held in the thread where the caller registered the subtree */
6661 static gboolean
6662 process_subtree_vtable_message_in_idle_cb (gpointer _data)
6663 {
6664   SubtreeDeferredData *data = _data;
6665   gboolean handled;
6666
6667   handled = FALSE;
6668
6669   if (g_strcmp0 (g_dbus_message_get_interface (data->message), "org.freedesktop.DBus.Introspectable") == 0 &&
6670       g_strcmp0 (g_dbus_message_get_member (data->message), "Introspect") == 0 &&
6671       g_strcmp0 (g_dbus_message_get_signature (data->message), "") == 0)
6672     handled = handle_subtree_introspect (data->es->connection,
6673                                          data->es,
6674                                          data->message);
6675   else
6676     handled = handle_subtree_method_invocation (data->es->connection,
6677                                                 data->es,
6678                                                 data->message);
6679
6680   if (!handled)
6681     {
6682       CONNECTION_LOCK (data->es->connection);
6683       handled = handle_generic_unlocked (data->es->connection, data->message);
6684       CONNECTION_UNLOCK (data->es->connection);
6685     }
6686
6687   /* if we couldn't handle the request, just bail with the UnknownMethod error */
6688   if (!handled)
6689     {
6690       GDBusMessage *reply;
6691       reply = g_dbus_message_new_method_error (data->message,
6692                                                "org.freedesktop.DBus.Error.UnknownMethod",
6693                                                _("Method ā€œ%sā€ on interface ā€œ%sā€ with signature ā€œ%sā€ does not exist"),
6694                                                g_dbus_message_get_member (data->message),
6695                                                g_dbus_message_get_interface (data->message),
6696                                                g_dbus_message_get_signature (data->message));
6697       g_dbus_connection_send_message (data->es->connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
6698       g_object_unref (reply);
6699     }
6700
6701   return FALSE;
6702 }
6703
6704 /* called in GDBusWorker thread with connection's lock held */
6705 static gboolean
6706 subtree_message_func (GDBusConnection *connection,
6707                       ExportedSubtree *es,
6708                       GDBusMessage    *message)
6709 {
6710   GSource *idle_source;
6711   SubtreeDeferredData *data;
6712
6713   data = g_new0 (SubtreeDeferredData, 1);
6714   data->message = g_object_ref (message);
6715   data->es = es;
6716
6717   /* defer this call to an idle handler in the right thread */
6718   idle_source = g_idle_source_new ();
6719   g_source_set_priority (idle_source, G_PRIORITY_HIGH);
6720   g_source_set_callback (idle_source,
6721                          process_subtree_vtable_message_in_idle_cb,
6722                          data,
6723                          (GDestroyNotify) subtree_deferred_data_free);
6724   g_source_set_name (idle_source, "[gio] process_subtree_vtable_message_in_idle_cb");
6725   g_source_attach (idle_source, es->context);
6726   g_source_unref (idle_source);
6727
6728   /* since we own the entire subtree, handlers for objects not in the subtree have been
6729    * tried already by libdbus-1 - so we just need to ensure that we're always going
6730    * to reply to the message
6731    */
6732   return TRUE;
6733 }
6734
6735 /**
6736  * g_dbus_connection_register_subtree:
6737  * @connection: a #GDBusConnection
6738  * @object_path: the object path to register the subtree at
6739  * @vtable: a #GDBusSubtreeVTable to enumerate, introspect and
6740  *     dispatch nodes in the subtree
6741  * @flags: flags used to fine tune the behavior of the subtree
6742  * @user_data: data to pass to functions in @vtable
6743  * @user_data_free_func: function to call when the subtree is unregistered
6744  * @error: return location for error or %NULL
6745  *
6746  * Registers a whole subtree of dynamic objects.
6747  *
6748  * The @enumerate and @introspection functions in @vtable are used to
6749  * convey, to remote callers, what nodes exist in the subtree rooted
6750  * by @object_path.
6751  *
6752  * When handling remote calls into any node in the subtree, first the
6753  * @enumerate function is used to check if the node exists. If the node exists
6754  * or the #G_DBUS_SUBTREE_FLAGS_DISPATCH_TO_UNENUMERATED_NODES flag is set
6755  * the @introspection function is used to check if the node supports the
6756  * requested method. If so, the @dispatch function is used to determine
6757  * where to dispatch the call. The collected #GDBusInterfaceVTable and
6758  * #gpointer will be used to call into the interface vtable for processing
6759  * the request.
6760  *
6761  * All calls into user-provided code will be invoked in the
6762  * [thread-default main context][g-main-context-push-thread-default]
6763  * of the thread you are calling this method from.
6764  *
6765  * If an existing subtree is already registered at @object_path or
6766  * then @error is set to #G_IO_ERROR_EXISTS.
6767  *
6768  * Note that it is valid to register regular objects (using
6769  * g_dbus_connection_register_object()) in a subtree registered with
6770  * g_dbus_connection_register_subtree() - if so, the subtree handler
6771  * is tried as the last resort. One way to think about a subtree
6772  * handler is to consider it a fallback handler for object paths not
6773  * registered via g_dbus_connection_register_object() or other bindings.
6774  *
6775  * Note that @vtable will be copied so you cannot change it after
6776  * registration.
6777  *
6778  * See this [server][gdbus-subtree-server] for an example of how to use
6779  * this method.
6780  *
6781  * Returns: 0 if @error is set, otherwise a subtree registration id (never 0)
6782  * that can be used with g_dbus_connection_unregister_subtree() .
6783  *
6784  * Since: 2.26
6785  */
6786 guint
6787 g_dbus_connection_register_subtree (GDBusConnection           *connection,
6788                                     const gchar               *object_path,
6789                                     const GDBusSubtreeVTable  *vtable,
6790                                     GDBusSubtreeFlags          flags,
6791                                     gpointer                   user_data,
6792                                     GDestroyNotify             user_data_free_func,
6793                                     GError                   **error)
6794 {
6795   guint ret;
6796   ExportedSubtree *es;
6797
6798   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), 0);
6799   g_return_val_if_fail (object_path != NULL && g_variant_is_object_path (object_path), 0);
6800   g_return_val_if_fail (vtable != NULL, 0);
6801   g_return_val_if_fail (error == NULL || *error == NULL, 0);
6802   g_return_val_if_fail (check_initialized (connection), 0);
6803
6804   ret = 0;
6805
6806   CONNECTION_LOCK (connection);
6807
6808   es = g_hash_table_lookup (connection->map_object_path_to_es, object_path);
6809   if (es != NULL)
6810     {
6811       g_set_error (error,
6812                    G_IO_ERROR,
6813                    G_IO_ERROR_EXISTS,
6814                    _("A subtree is already exported for %s"),
6815                    object_path);
6816       goto out;
6817     }
6818
6819   es = g_new0 (ExportedSubtree, 1);
6820   es->object_path = g_strdup (object_path);
6821   es->connection = connection;
6822
6823   es->vtable = _g_dbus_subtree_vtable_copy (vtable);
6824   es->flags = flags;
6825   es->id = g_atomic_int_add (&_global_subtree_registration_id, 1); /* TODO: overflow etc. */
6826   es->user_data = user_data;
6827   es->user_data_free_func = user_data_free_func;
6828   es->context = g_main_context_ref_thread_default ();
6829
6830   g_hash_table_insert (connection->map_object_path_to_es, es->object_path, es);
6831   g_hash_table_insert (connection->map_id_to_es,
6832                        GUINT_TO_POINTER (es->id),
6833                        es);
6834
6835   ret = es->id;
6836
6837  out:
6838   CONNECTION_UNLOCK (connection);
6839
6840   return ret;
6841 }
6842
6843 /* ---------------------------------------------------------------------------------------------------- */
6844
6845 /**
6846  * g_dbus_connection_unregister_subtree:
6847  * @connection: a #GDBusConnection
6848  * @registration_id: a subtree registration id obtained from
6849  *     g_dbus_connection_register_subtree()
6850  *
6851  * Unregisters a subtree.
6852  *
6853  * Returns: %TRUE if the subtree was unregistered, %FALSE otherwise
6854  *
6855  * Since: 2.26
6856  */
6857 gboolean
6858 g_dbus_connection_unregister_subtree (GDBusConnection *connection,
6859                                       guint            registration_id)
6860 {
6861   ExportedSubtree *es;
6862   gboolean ret;
6863
6864   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), FALSE);
6865   g_return_val_if_fail (check_initialized (connection), FALSE);
6866
6867   ret = FALSE;
6868
6869   CONNECTION_LOCK (connection);
6870
6871   es = g_hash_table_lookup (connection->map_id_to_es,
6872                             GUINT_TO_POINTER (registration_id));
6873   if (es == NULL)
6874     goto out;
6875
6876   g_warn_if_fail (g_hash_table_remove (connection->map_id_to_es, GUINT_TO_POINTER (es->id)));
6877   g_warn_if_fail (g_hash_table_remove (connection->map_object_path_to_es, es->object_path));
6878
6879   ret = TRUE;
6880
6881  out:
6882   CONNECTION_UNLOCK (connection);
6883
6884   return ret;
6885 }
6886
6887 /* ---------------------------------------------------------------------------------------------------- */
6888
6889 /* may be called in any thread, with connection's lock held */
6890 static void
6891 handle_generic_ping_unlocked (GDBusConnection *connection,
6892                               const gchar     *object_path,
6893                               GDBusMessage    *message)
6894 {
6895   GDBusMessage *reply;
6896   reply = g_dbus_message_new_method_reply (message);
6897   g_dbus_connection_send_message_unlocked (connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
6898   g_object_unref (reply);
6899 }
6900
6901 /* may be called in any thread, with connection's lock held */
6902 static void
6903 handle_generic_get_machine_id_unlocked (GDBusConnection *connection,
6904                                         const gchar     *object_path,
6905                                         GDBusMessage    *message)
6906 {
6907   GDBusMessage *reply;
6908
6909   reply = NULL;
6910   if (connection->machine_id == NULL)
6911     {
6912       GError *error;
6913
6914       error = NULL;
6915       connection->machine_id = _g_dbus_get_machine_id (&error);
6916       if (connection->machine_id == NULL)
6917         {
6918           reply = g_dbus_message_new_method_error_literal (message,
6919                                                            "org.freedesktop.DBus.Error.Failed",
6920                                                            error->message);
6921           g_error_free (error);
6922         }
6923     }
6924
6925   if (reply == NULL)
6926     {
6927       reply = g_dbus_message_new_method_reply (message);
6928       g_dbus_message_set_body (reply, g_variant_new ("(s)", connection->machine_id));
6929     }
6930   g_dbus_connection_send_message_unlocked (connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
6931   g_object_unref (reply);
6932 }
6933
6934 /* may be called in any thread, with connection's lock held */
6935 static void
6936 handle_generic_introspect_unlocked (GDBusConnection *connection,
6937                                     const gchar     *object_path,
6938                                     GDBusMessage    *message)
6939 {
6940   guint n;
6941   GString *s;
6942   gchar **registered;
6943   GDBusMessage *reply;
6944
6945   /* first the header */
6946   s = g_string_new (NULL);
6947   introspect_append_header (s);
6948
6949   registered = g_dbus_connection_list_registered_unlocked (connection, object_path);
6950   for (n = 0; registered != NULL && registered[n] != NULL; n++)
6951       g_string_append_printf (s, "  <node name=\"%s\"/>\n", registered[n]);
6952   g_strfreev (registered);
6953   g_string_append (s, "</node>\n");
6954
6955   reply = g_dbus_message_new_method_reply (message);
6956   g_dbus_message_set_body (reply, g_variant_new ("(s)", s->str));
6957   g_dbus_connection_send_message_unlocked (connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
6958   g_object_unref (reply);
6959   g_string_free (s, TRUE);
6960 }
6961
6962 /* may be called in any thread, with connection's lock held */
6963 static gboolean
6964 handle_generic_unlocked (GDBusConnection *connection,
6965                          GDBusMessage    *message)
6966 {
6967   gboolean handled;
6968   const gchar *interface_name;
6969   const gchar *member;
6970   const gchar *signature;
6971   const gchar *path;
6972
6973   CONNECTION_ENSURE_LOCK (connection);
6974
6975   handled = FALSE;
6976
6977   interface_name = g_dbus_message_get_interface (message);
6978   member = g_dbus_message_get_member (message);
6979   signature = g_dbus_message_get_signature (message);
6980   path = g_dbus_message_get_path (message);
6981
6982   if (g_strcmp0 (interface_name, "org.freedesktop.DBus.Introspectable") == 0 &&
6983       g_strcmp0 (member, "Introspect") == 0 &&
6984       g_strcmp0 (signature, "") == 0)
6985     {
6986       handle_generic_introspect_unlocked (connection, path, message);
6987       handled = TRUE;
6988     }
6989   else if (g_strcmp0 (interface_name, "org.freedesktop.DBus.Peer") == 0 &&
6990            g_strcmp0 (member, "Ping") == 0 &&
6991            g_strcmp0 (signature, "") == 0)
6992     {
6993       handle_generic_ping_unlocked (connection, path, message);
6994       handled = TRUE;
6995     }
6996   else if (g_strcmp0 (interface_name, "org.freedesktop.DBus.Peer") == 0 &&
6997            g_strcmp0 (member, "GetMachineId") == 0 &&
6998            g_strcmp0 (signature, "") == 0)
6999     {
7000       handle_generic_get_machine_id_unlocked (connection, path, message);
7001       handled = TRUE;
7002     }
7003
7004   return handled;
7005 }
7006
7007 /* ---------------------------------------------------------------------------------------------------- */
7008
7009 /* called in GDBusWorker thread with connection's lock held */
7010 static void
7011 distribute_method_call (GDBusConnection *connection,
7012                         GDBusMessage    *message)
7013 {
7014   GDBusMessage *reply;
7015   ExportedObject *eo;
7016   ExportedSubtree *es;
7017   const gchar *object_path;
7018   const gchar *interface_name;
7019   const gchar *member;
7020   const gchar *path;
7021   gchar *subtree_path;
7022   gchar *needle;
7023
7024   g_assert (g_dbus_message_get_message_type (message) == G_DBUS_MESSAGE_TYPE_METHOD_CALL);
7025
7026   interface_name = g_dbus_message_get_interface (message);
7027   member = g_dbus_message_get_member (message);
7028   path = g_dbus_message_get_path (message);
7029   subtree_path = g_strdup (path);
7030   needle = strrchr (subtree_path, '/');
7031   if (needle != NULL && needle != subtree_path)
7032     {
7033       *needle = '\0';
7034     }
7035   else
7036     {
7037       g_free (subtree_path);
7038       subtree_path = NULL;
7039     }
7040
7041
7042   if (G_UNLIKELY (_g_dbus_debug_incoming ()))
7043     {
7044       _g_dbus_debug_print_lock ();
7045       g_print ("========================================================================\n"
7046                "GDBus-debug:Incoming:\n"
7047                " <<<< METHOD INVOCATION %s.%s()\n"
7048                "      on object %s\n"
7049                "      invoked by name %s\n"
7050                "      serial %d\n",
7051                interface_name, member,
7052                path,
7053                g_dbus_message_get_sender (message) != NULL ? g_dbus_message_get_sender (message) : "(none)",
7054                g_dbus_message_get_serial (message));
7055       _g_dbus_debug_print_unlock ();
7056     }
7057
7058   object_path = g_dbus_message_get_path (message);
7059   g_assert (object_path != NULL);
7060
7061   eo = g_hash_table_lookup (connection->map_object_path_to_eo, object_path);
7062   if (eo != NULL)
7063     {
7064       if (obj_message_func (connection, eo, message))
7065         goto out;
7066     }
7067
7068   es = g_hash_table_lookup (connection->map_object_path_to_es, object_path);
7069   if (es != NULL)
7070     {
7071       if (subtree_message_func (connection, es, message))
7072         goto out;
7073     }
7074
7075   if (subtree_path != NULL)
7076     {
7077       es = g_hash_table_lookup (connection->map_object_path_to_es, subtree_path);
7078       if (es != NULL)
7079         {
7080           if (subtree_message_func (connection, es, message))
7081             goto out;
7082         }
7083     }
7084
7085   if (handle_generic_unlocked (connection, message))
7086     goto out;
7087
7088   /* if we end up here, the message has not been not handled - so return an error saying this */
7089   reply = g_dbus_message_new_method_error (message,
7090                                            "org.freedesktop.DBus.Error.UnknownMethod",
7091                                            _("No such interface ā€œ%sā€ on object at path %s"),
7092                                            interface_name,
7093                                            object_path);
7094   g_dbus_connection_send_message_unlocked (connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
7095   g_object_unref (reply);
7096
7097  out:
7098   g_free (subtree_path);
7099 }
7100
7101 /* ---------------------------------------------------------------------------------------------------- */
7102
7103 /* Called in any user thread, with the message_bus_lock held. */
7104 static GWeakRef *
7105 message_bus_get_singleton (GBusType   bus_type,
7106                            GError   **error)
7107 {
7108   GWeakRef *ret;
7109   const gchar *starter_bus;
7110
7111   ret = NULL;
7112
7113   switch (bus_type)
7114     {
7115     case G_BUS_TYPE_SESSION:
7116       ret = &the_session_bus;
7117       break;
7118
7119     case G_BUS_TYPE_SYSTEM:
7120       ret = &the_system_bus;
7121       break;
7122
7123     case G_BUS_TYPE_STARTER:
7124       starter_bus = g_getenv ("DBUS_STARTER_BUS_TYPE");
7125       if (g_strcmp0 (starter_bus, "session") == 0)
7126         {
7127           ret = message_bus_get_singleton (G_BUS_TYPE_SESSION, error);
7128           goto out;
7129         }
7130       else if (g_strcmp0 (starter_bus, "system") == 0)
7131         {
7132           ret = message_bus_get_singleton (G_BUS_TYPE_SYSTEM, error);
7133           goto out;
7134         }
7135       else
7136         {
7137           if (starter_bus != NULL)
7138             {
7139               g_set_error (error,
7140                            G_IO_ERROR,
7141                            G_IO_ERROR_INVALID_ARGUMENT,
7142                            _("Cannot determine bus address from DBUS_STARTER_BUS_TYPE environment variable"
7143                              " ā€” unknown value ā€œ%sā€"),
7144                            starter_bus);
7145             }
7146           else
7147             {
7148               g_set_error_literal (error,
7149                                    G_IO_ERROR,
7150                                    G_IO_ERROR_INVALID_ARGUMENT,
7151                                    _("Cannot determine bus address because the DBUS_STARTER_BUS_TYPE environment "
7152                                      "variable is not set"));
7153             }
7154         }
7155       break;
7156
7157     default:
7158       g_assert_not_reached ();
7159       break;
7160     }
7161
7162  out:
7163   return ret;
7164 }
7165
7166 /* Called in any user thread, without holding locks. */
7167 static GDBusConnection *
7168 get_uninitialized_connection (GBusType       bus_type,
7169                               GCancellable  *cancellable,
7170                               GError       **error)
7171 {
7172   GWeakRef *singleton;
7173   GDBusConnection *ret;
7174
7175   ret = NULL;
7176
7177   G_LOCK (message_bus_lock);
7178   singleton = message_bus_get_singleton (bus_type, error);
7179   if (singleton == NULL)
7180     goto out;
7181
7182   ret = g_weak_ref_get (singleton);
7183
7184   if (ret == NULL)
7185     {
7186       gchar *address;
7187       address = g_dbus_address_get_for_bus_sync (bus_type, cancellable, error);
7188       if (address == NULL)
7189         goto out;
7190       ret = g_object_new (G_TYPE_DBUS_CONNECTION,
7191                           "address", address,
7192                           "flags", G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_CLIENT |
7193                                    G_DBUS_CONNECTION_FLAGS_MESSAGE_BUS_CONNECTION,
7194                           "exit-on-close", TRUE,
7195                           NULL);
7196
7197       g_weak_ref_set (singleton, ret);
7198       g_free (address);
7199     }
7200
7201   g_assert (ret != NULL);
7202
7203  out:
7204   G_UNLOCK (message_bus_lock);
7205   return ret;
7206 }
7207
7208 /* May be called from any thread. Must not hold message_bus_lock. */
7209 GDBusConnection *
7210 _g_bus_get_singleton_if_exists (GBusType bus_type)
7211 {
7212   GWeakRef *singleton;
7213   GDBusConnection *ret = NULL;
7214
7215   G_LOCK (message_bus_lock);
7216   singleton = message_bus_get_singleton (bus_type, NULL);
7217   if (singleton == NULL)
7218     goto out;
7219
7220   ret = g_weak_ref_get (singleton);
7221
7222  out:
7223   G_UNLOCK (message_bus_lock);
7224   return ret;
7225 }
7226
7227 /* May be called from any thread. Must not hold message_bus_lock. */
7228 void
7229 _g_bus_forget_singleton (GBusType bus_type)
7230 {
7231   GWeakRef *singleton;
7232
7233   G_LOCK (message_bus_lock);
7234
7235   singleton = message_bus_get_singleton (bus_type, NULL);
7236
7237   if (singleton != NULL)
7238     g_weak_ref_set (singleton, NULL);
7239
7240   G_UNLOCK (message_bus_lock);
7241 }
7242
7243 /**
7244  * g_bus_get_sync:
7245  * @bus_type: a #GBusType
7246  * @cancellable: (nullable): a #GCancellable or %NULL
7247  * @error: return location for error or %NULL
7248  *
7249  * Synchronously connects to the message bus specified by @bus_type.
7250  * Note that the returned object may shared with other callers,
7251  * e.g. if two separate parts of a process calls this function with
7252  * the same @bus_type, they will share the same object.
7253  *
7254  * This is a synchronous failable function. See g_bus_get() and
7255  * g_bus_get_finish() for the asynchronous version.
7256  *
7257  * The returned object is a singleton, that is, shared with other
7258  * callers of g_bus_get() and g_bus_get_sync() for @bus_type. In the
7259  * event that you need a private message bus connection, use
7260  * g_dbus_address_get_for_bus_sync() and
7261  * g_dbus_connection_new_for_address().
7262  *
7263  * Note that the returned #GDBusConnection object will (usually) have
7264  * the #GDBusConnection:exit-on-close property set to %TRUE.
7265  *
7266  * Returns: (transfer full): a #GDBusConnection or %NULL if @error is set.
7267  *     Free with g_object_unref().
7268  *
7269  * Since: 2.26
7270  */
7271 GDBusConnection *
7272 g_bus_get_sync (GBusType       bus_type,
7273                 GCancellable  *cancellable,
7274                 GError       **error)
7275 {
7276   GDBusConnection *connection;
7277
7278   _g_dbus_initialize ();
7279
7280   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
7281
7282   connection = get_uninitialized_connection (bus_type, cancellable, error);
7283   if (connection == NULL)
7284     goto out;
7285
7286   if (!g_initable_init (G_INITABLE (connection), cancellable, error))
7287     {
7288       g_object_unref (connection);
7289       connection = NULL;
7290     }
7291
7292  out:
7293   return connection;
7294 }
7295
7296 static void
7297 bus_get_async_initable_cb (GObject      *source_object,
7298                            GAsyncResult *res,
7299                            gpointer      user_data)
7300 {
7301   GTask *task = user_data;
7302   GError *error = NULL;
7303
7304   if (!g_async_initable_init_finish (G_ASYNC_INITABLE (source_object),
7305                                      res,
7306                                      &error))
7307     {
7308       g_assert (error != NULL);
7309       g_task_return_error (task, error);
7310       g_object_unref (source_object);
7311     }
7312   else
7313     {
7314       g_task_return_pointer (task, source_object, g_object_unref);
7315     }
7316   g_object_unref (task);
7317 }
7318
7319 /**
7320  * g_bus_get:
7321  * @bus_type: a #GBusType
7322  * @cancellable: (nullable): a #GCancellable or %NULL
7323  * @callback: a #GAsyncReadyCallback to call when the request is satisfied
7324  * @user_data: the data to pass to @callback
7325  *
7326  * Asynchronously connects to the message bus specified by @bus_type.
7327  *
7328  * When the operation is finished, @callback will be invoked. You can
7329  * then call g_bus_get_finish() to get the result of the operation.
7330  *
7331  * This is a asynchronous failable function. See g_bus_get_sync() for
7332  * the synchronous version.
7333  *
7334  * Since: 2.26
7335  */
7336 void
7337 g_bus_get (GBusType             bus_type,
7338            GCancellable        *cancellable,
7339            GAsyncReadyCallback  callback,
7340            gpointer             user_data)
7341 {
7342   GDBusConnection *connection;
7343   GTask *task;
7344   GError *error = NULL;
7345
7346   _g_dbus_initialize ();
7347
7348   task = g_task_new (NULL, cancellable, callback, user_data);
7349   g_task_set_source_tag (task, g_bus_get);
7350
7351   connection = get_uninitialized_connection (bus_type, cancellable, &error);
7352   if (connection == NULL)
7353     {
7354       g_assert (error != NULL);
7355       g_task_return_error (task, error);
7356       g_object_unref (task);
7357     }
7358   else
7359     {
7360       g_async_initable_init_async (G_ASYNC_INITABLE (connection),
7361                                    G_PRIORITY_DEFAULT,
7362                                    cancellable,
7363                                    bus_get_async_initable_cb,
7364                                    task);
7365     }
7366 }
7367
7368 /**
7369  * g_bus_get_finish:
7370  * @res: a #GAsyncResult obtained from the #GAsyncReadyCallback passed
7371  *     to g_bus_get()
7372  * @error: return location for error or %NULL
7373  *
7374  * Finishes an operation started with g_bus_get().
7375  *
7376  * The returned object is a singleton, that is, shared with other
7377  * callers of g_bus_get() and g_bus_get_sync() for @bus_type. In the
7378  * event that you need a private message bus connection, use
7379  * g_dbus_address_get_for_bus_sync() and
7380  * g_dbus_connection_new_for_address().
7381  *
7382  * Note that the returned #GDBusConnection object will (usually) have
7383  * the #GDBusConnection:exit-on-close property set to %TRUE.
7384  *
7385  * Returns: (transfer full): a #GDBusConnection or %NULL if @error is set.
7386  *     Free with g_object_unref().
7387  *
7388  * Since: 2.26
7389  */
7390 GDBusConnection *
7391 g_bus_get_finish (GAsyncResult  *res,
7392                   GError       **error)
7393 {
7394   g_return_val_if_fail (g_task_is_valid (res, NULL), NULL);
7395   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
7396
7397   return g_task_propagate_pointer (G_TASK (res), error);
7398 }
7399
7400 /* ---------------------------------------------------------------------------------------------------- */