gio: deprecate gioscheduler, soft deprecate GSimpleAsyncResult
[platform/upstream/glib.git] / gio / gdbusinterfaceskeleton.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 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, write to the
17  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18  * Boston, MA 02111-1307, USA.
19  *
20  * Author: David Zeuthen <davidz@redhat.com>
21  */
22
23 #include "config.h"
24
25 #include "gdbusinterface.h"
26 #include "gdbusinterfaceskeleton.h"
27 #include "gdbusobjectskeleton.h"
28 #include "gioenumtypes.h"
29 #include "gdbusprivate.h"
30 #include "gdbusmethodinvocation.h"
31 #include "gdbusconnection.h"
32 #include "gtask.h"
33 #include "gioerror.h"
34
35 #include "glibintl.h"
36
37 /**
38  * SECTION:gdbusinterfaceskeleton
39  * @short_description: Service-side D-Bus interface
40  * @include: gio/gio.h
41  *
42  * Abstract base class for D-Bus interfaces on the service side.
43  */
44
45 struct _GDBusInterfaceSkeletonPrivate
46 {
47   GMutex                      lock;
48
49   GDBusObject                *object;
50   GDBusInterfaceSkeletonFlags flags;
51
52   GSList                     *connections;   /* List of ConnectionData */
53   gchar                      *object_path;   /* The object path for this skeleton */
54   GDBusInterfaceVTable       *hooked_vtable;
55 };
56
57 typedef struct
58 {
59   GDBusConnection *connection;
60   guint            registration_id;
61 } ConnectionData;
62
63 enum
64 {
65   G_AUTHORIZE_METHOD_SIGNAL,
66   LAST_SIGNAL
67 };
68
69 enum
70 {
71   PROP_0,
72   PROP_G_FLAGS
73 };
74
75 static guint signals[LAST_SIGNAL] = {0};
76
77 static void     dbus_interface_interface_init                      (GDBusInterfaceIface    *iface);
78
79 static void     set_object_path_locked                             (GDBusInterfaceSkeleton *interface_,
80                                                                     const gchar            *object_path);
81 static void     remove_connection_locked                           (GDBusInterfaceSkeleton *interface_,
82                                                                     GDBusConnection        *connection);
83 static void     skeleton_intercept_handle_method_call              (GDBusConnection        *connection,
84                                                                     const gchar            *sender,
85                                                                     const gchar            *object_path,
86                                                                     const gchar            *interface_name,
87                                                                     const gchar            *method_name,
88                                                                     GVariant               *parameters,
89                                                                     GDBusMethodInvocation  *invocation,
90                                                                     gpointer                user_data);
91
92
93 G_DEFINE_ABSTRACT_TYPE_WITH_CODE (GDBusInterfaceSkeleton, g_dbus_interface_skeleton, G_TYPE_OBJECT,
94                                   G_IMPLEMENT_INTERFACE (G_TYPE_DBUS_INTERFACE, dbus_interface_interface_init));
95
96 static void
97 g_dbus_interface_skeleton_finalize (GObject *object)
98 {
99   GDBusInterfaceSkeleton *interface = G_DBUS_INTERFACE_SKELETON (object);
100
101   /* Hold the lock just incase any code we call verifies that the lock is held */
102   g_mutex_lock (&interface->priv->lock);
103
104   /* unexport from all connections if we're exported anywhere */
105   while (interface->priv->connections != NULL)
106     {
107       ConnectionData *data = interface->priv->connections->data;
108       remove_connection_locked (interface, data->connection);
109     }
110
111   set_object_path_locked (interface, NULL);
112
113   g_mutex_unlock (&interface->priv->lock);
114
115   g_free (interface->priv->hooked_vtable);
116
117   if (interface->priv->object != NULL)
118     g_object_remove_weak_pointer (G_OBJECT (interface->priv->object), (gpointer *) &interface->priv->object);
119
120   g_mutex_clear (&interface->priv->lock);
121
122   G_OBJECT_CLASS (g_dbus_interface_skeleton_parent_class)->finalize (object);
123 }
124
125 static void
126 g_dbus_interface_skeleton_get_property (GObject      *object,
127                                         guint         prop_id,
128                                         GValue       *value,
129                                         GParamSpec   *pspec)
130 {
131   GDBusInterfaceSkeleton *interface = G_DBUS_INTERFACE_SKELETON (object);
132
133   switch (prop_id)
134     {
135     case PROP_G_FLAGS:
136       g_value_set_flags (value, g_dbus_interface_skeleton_get_flags (interface));
137       break;
138
139     default:
140       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
141       break;
142     }
143 }
144
145 static void
146 g_dbus_interface_skeleton_set_property (GObject      *object,
147                                         guint         prop_id,
148                                         const GValue *value,
149                                         GParamSpec   *pspec)
150 {
151   GDBusInterfaceSkeleton *interface = G_DBUS_INTERFACE_SKELETON (object);
152
153   switch (prop_id)
154     {
155     case PROP_G_FLAGS:
156       g_dbus_interface_skeleton_set_flags (interface, g_value_get_flags (value));
157       break;
158
159     default:
160       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
161       break;
162     }
163 }
164
165 static gboolean
166 g_dbus_interface_skeleton_g_authorize_method_default (GDBusInterfaceSkeleton    *interface,
167                                                       GDBusMethodInvocation *invocation)
168 {
169   return TRUE;
170 }
171
172 static void
173 g_dbus_interface_skeleton_class_init (GDBusInterfaceSkeletonClass *klass)
174 {
175   GObjectClass *gobject_class;
176
177   gobject_class = G_OBJECT_CLASS (klass);
178   gobject_class->finalize     = g_dbus_interface_skeleton_finalize;
179   gobject_class->set_property = g_dbus_interface_skeleton_set_property;
180   gobject_class->get_property = g_dbus_interface_skeleton_get_property;
181
182   klass->g_authorize_method = g_dbus_interface_skeleton_g_authorize_method_default;
183
184   /**
185    * GDBusInterfaceSkeleton:g-flags:
186    *
187    * Flags from the #GDBusInterfaceSkeletonFlags enumeration.
188    *
189    * Since: 2.30
190    */
191   g_object_class_install_property (gobject_class,
192                                    PROP_G_FLAGS,
193                                    g_param_spec_flags ("g-flags",
194                                                        "g-flags",
195                                                        "Flags for the interface skeleton",
196                                                        G_TYPE_DBUS_INTERFACE_SKELETON_FLAGS,
197                                                        G_DBUS_INTERFACE_SKELETON_FLAGS_NONE,
198                                                        G_PARAM_READABLE |
199                                                        G_PARAM_WRITABLE |
200                                                        G_PARAM_STATIC_STRINGS));
201
202   /**
203    * GDBusInterfaceSkeleton::g-authorize-method:
204    * @interface: The #GDBusInterfaceSkeleton emitting the signal.
205    * @invocation: A #GDBusMethodInvocation.
206    *
207    * Emitted when a method is invoked by a remote caller and used to
208    * determine if the method call is authorized.
209    *
210    * Note that this signal is emitted in a thread dedicated to
211    * handling the method call so handlers are allowed to perform
212    * blocking IO. This means that it is appropriate to call
213    * e.g. <ulink
214    * url="http://hal.freedesktop.org/docs/polkit/PolkitAuthority.html#polkit-authority-check-authorization-sync">polkit_authority_check_authorization_sync()</ulink>
215    * with the <ulink
216    * url="http://hal.freedesktop.org/docs/polkit/PolkitAuthority.html#POLKIT-CHECK-AUTHORIZATION-FLAGS-ALLOW-USER-INTERACTION:CAPS">POLKIT_CHECK_AUTHORIZATION_FLAGS_ALLOW_USER_INTERACTION</ulink> flag set.
217    *
218    * If %FALSE is returned then no further handlers are run and the
219    * signal handler must take a reference to @invocation and finish
220    * handling the call (e.g. return an error via
221    * g_dbus_method_invocation_return_error()).
222    *
223    * Otherwise, if %TRUE is returned, signal emission continues. If no
224    * handlers return %FALSE, then the method is dispatched. If
225    * @interface has an enclosing #GDBusObjectSkeleton, then the
226    * #GDBusObjectSkeleton::authorize-method signal handlers run before
227    * the handlers for this signal.
228    *
229    * The default class handler just returns %TRUE.
230    *
231    * Please note that the common case is optimized: if no signals
232    * handlers are connected and the default class handler isn't
233    * overridden (for both @interface and the enclosing
234    * #GDBusObjectSkeleton, if any) and #GDBusInterfaceSkeleton:g-flags does
235    * not have the
236    * %G_DBUS_INTERFACE_SKELETON_FLAGS_HANDLE_METHOD_INVOCATIONS_IN_THREAD
237    * flags set, no dedicated thread is ever used and the call will be
238    * handled in the same thread as the object that @interface belongs
239    * to was exported in.
240    *
241    * Returns: %TRUE if the call is authorized, %FALSE otherwise.
242    *
243    * Since: 2.30
244    */
245   signals[G_AUTHORIZE_METHOD_SIGNAL] =
246     g_signal_new ("g-authorize-method",
247                   G_TYPE_DBUS_INTERFACE_SKELETON,
248                   G_SIGNAL_RUN_LAST,
249                   G_STRUCT_OFFSET (GDBusInterfaceSkeletonClass, g_authorize_method),
250                   _g_signal_accumulator_false_handled,
251                   NULL,
252                   NULL,
253                   G_TYPE_BOOLEAN,
254                   1,
255                   G_TYPE_DBUS_METHOD_INVOCATION);
256
257   g_type_class_add_private (klass, sizeof (GDBusInterfaceSkeletonPrivate));
258 }
259
260 static void
261 g_dbus_interface_skeleton_init (GDBusInterfaceSkeleton *interface)
262 {
263   interface->priv = G_TYPE_INSTANCE_GET_PRIVATE (interface, G_TYPE_DBUS_INTERFACE_SKELETON, GDBusInterfaceSkeletonPrivate);
264   g_mutex_init (&interface->priv->lock);
265 }
266
267 /* ---------------------------------------------------------------------------------------------------- */
268
269 /**
270  * g_dbus_interface_skeleton_get_flags:
271  * @interface_: A #GDBusInterfaceSkeleton.
272  *
273  * Gets the #GDBusInterfaceSkeletonFlags that describes what the behavior
274  * of @interface_
275  *
276  * Returns: One or more flags from the #GDBusInterfaceSkeletonFlags enumeration.
277  *
278  * Since: 2.30
279  */
280 GDBusInterfaceSkeletonFlags
281 g_dbus_interface_skeleton_get_flags (GDBusInterfaceSkeleton  *interface_)
282 {
283   g_return_val_if_fail (G_IS_DBUS_INTERFACE_SKELETON (interface_), G_DBUS_INTERFACE_SKELETON_FLAGS_NONE);
284   return interface_->priv->flags;
285 }
286
287 /**
288  * g_dbus_interface_skeleton_set_flags:
289  * @interface_: A #GDBusInterfaceSkeleton.
290  * @flags: Flags from the #GDBusInterfaceSkeletonFlags enumeration.
291  *
292  * Sets flags describing what the behavior of @skeleton should be.
293  *
294  * Since: 2.30
295  */
296 void
297 g_dbus_interface_skeleton_set_flags (GDBusInterfaceSkeleton      *interface_,
298                                      GDBusInterfaceSkeletonFlags  flags)
299 {
300   g_return_if_fail (G_IS_DBUS_INTERFACE_SKELETON (interface_));
301   g_mutex_lock (&interface_->priv->lock);
302   if (interface_->priv->flags != flags)
303     {
304       interface_->priv->flags = flags;
305       g_mutex_unlock (&interface_->priv->lock);
306       g_object_notify (G_OBJECT (interface_), "g-flags");
307     }
308   else
309     {
310       g_mutex_unlock (&interface_->priv->lock);
311     }
312 }
313
314 /**
315  * g_dbus_interface_skeleton_get_info:
316  * @interface_: A #GDBusInterfaceSkeleton.
317  *
318  * Gets D-Bus introspection information for the D-Bus interface
319  * implemented by @interface_.
320  *
321  * Returns: (transfer none): A #GDBusInterfaceInfo (never %NULL). Do not free.
322  *
323  * Since: 2.30
324  */
325 GDBusInterfaceInfo *
326 g_dbus_interface_skeleton_get_info (GDBusInterfaceSkeleton *interface_)
327 {
328   GDBusInterfaceInfo *ret;
329   g_return_val_if_fail (G_IS_DBUS_INTERFACE_SKELETON (interface_), NULL);
330   ret = G_DBUS_INTERFACE_SKELETON_GET_CLASS (interface_)->get_info (interface_);
331   g_warn_if_fail (ret != NULL);
332   return ret;
333 }
334
335 /**
336  * g_dbus_interface_skeleton_get_vtable: (skip)
337  * @interface_: A #GDBusInterfaceSkeleton.
338  *
339  * Gets the interface vtable for the D-Bus interface implemented by
340  * @interface_. The returned function pointers should expect @interface_
341  * itself to be passed as @user_data.
342  *
343  * Returns: A #GDBusInterfaceVTable (never %NULL).
344  *
345  * Since: 2.30
346  */
347 GDBusInterfaceVTable *
348 g_dbus_interface_skeleton_get_vtable (GDBusInterfaceSkeleton *interface_)
349 {
350   GDBusInterfaceVTable *ret;
351   g_return_val_if_fail (G_IS_DBUS_INTERFACE_SKELETON (interface_), NULL);
352   ret = G_DBUS_INTERFACE_SKELETON_GET_CLASS (interface_)->get_vtable (interface_);
353   g_warn_if_fail (ret != NULL);
354   return ret;
355 }
356
357 /**
358  * g_dbus_interface_skeleton_get_properties:
359  * @interface_: A #GDBusInterfaceSkeleton.
360  *
361  * Gets all D-Bus properties for @interface_.
362  *
363  * Returns: (transfer full): A #GVariant of type <link linkend="G-VARIANT-TYPE-VARDICT:CAPS">'a{sv}'</link>. Free with g_variant_unref().
364  *
365  * Since: 2.30
366  */
367 GVariant *
368 g_dbus_interface_skeleton_get_properties (GDBusInterfaceSkeleton *interface_)
369 {
370   GVariant *ret;
371   g_return_val_if_fail (G_IS_DBUS_INTERFACE_SKELETON (interface_), NULL);
372   ret = G_DBUS_INTERFACE_SKELETON_GET_CLASS (interface_)->get_properties (interface_);
373   return g_variant_take_ref (ret);
374 }
375
376 /**
377  * g_dbus_interface_skeleton_flush:
378  * @interface_: A #GDBusInterfaceSkeleton.
379  *
380  * If @interface_ has outstanding changes, request for these changes to be
381  * emitted immediately.
382  *
383  * For example, an exported D-Bus interface may queue up property
384  * changes and emit the
385  * <literal>org.freedesktop.DBus.Properties::PropertiesChanged</literal>
386  * signal later (e.g. in an idle handler). This technique is useful
387  * for collapsing multiple property changes into one.
388  *
389  * Since: 2.30
390  */
391 void
392 g_dbus_interface_skeleton_flush (GDBusInterfaceSkeleton *interface_)
393 {
394   g_return_if_fail (G_IS_DBUS_INTERFACE_SKELETON (interface_));
395   G_DBUS_INTERFACE_SKELETON_GET_CLASS (interface_)->flush (interface_);
396 }
397
398 /* ---------------------------------------------------------------------------------------------------- */
399
400 static GDBusInterfaceInfo *
401 _g_dbus_interface_skeleton_get_info (GDBusInterface *interface_)
402 {
403   GDBusInterfaceSkeleton *interface = G_DBUS_INTERFACE_SKELETON (interface_);
404   return g_dbus_interface_skeleton_get_info (interface);
405 }
406
407 static GDBusObject *
408 g_dbus_interface_skeleton_get_object (GDBusInterface *interface_)
409 {
410   GDBusInterfaceSkeleton *interface = G_DBUS_INTERFACE_SKELETON (interface_);
411   GDBusObject *ret;
412   g_mutex_lock (&interface->priv->lock);
413   ret = interface->priv->object;
414   g_mutex_unlock (&interface->priv->lock);
415   return ret;
416 }
417
418 static GDBusObject *
419 g_dbus_interface_skeleton_dup_object (GDBusInterface *interface_)
420 {
421   GDBusInterfaceSkeleton *interface = G_DBUS_INTERFACE_SKELETON (interface_);
422   GDBusObject *ret;
423   g_mutex_lock (&interface->priv->lock);
424   ret = interface->priv->object;
425   if (ret != NULL)
426     g_object_ref (ret);
427   g_mutex_unlock (&interface->priv->lock);
428   return ret;
429 }
430
431 static void
432 g_dbus_interface_skeleton_set_object (GDBusInterface *interface_,
433                                       GDBusObject    *object)
434 {
435   GDBusInterfaceSkeleton *interface = G_DBUS_INTERFACE_SKELETON (interface_);
436   g_mutex_lock (&interface->priv->lock);
437   if (interface->priv->object != NULL)
438     g_object_remove_weak_pointer (G_OBJECT (interface->priv->object), (gpointer *) &interface->priv->object);
439   interface->priv->object = object;
440   if (object != NULL)
441     g_object_add_weak_pointer (G_OBJECT (interface->priv->object), (gpointer *) &interface->priv->object);
442   g_mutex_unlock (&interface->priv->lock);
443 }
444
445 static void
446 dbus_interface_interface_init (GDBusInterfaceIface *iface)
447 {
448   iface->get_info    = _g_dbus_interface_skeleton_get_info;
449   iface->get_object  = g_dbus_interface_skeleton_get_object;
450   iface->dup_object  = g_dbus_interface_skeleton_dup_object;
451   iface->set_object  = g_dbus_interface_skeleton_set_object;
452 }
453
454 /* ---------------------------------------------------------------------------------------------------- */
455
456 typedef struct
457 {
458   volatile gint ref_count;
459   GDBusInterfaceSkeleton       *interface;
460   GDBusInterfaceMethodCallFunc  method_call_func;
461   GDBusMethodInvocation        *invocation;
462 } DispatchData;
463
464 static void
465 dispatch_data_unref (DispatchData *data)
466 {
467   if (g_atomic_int_dec_and_test (&data->ref_count))
468     g_slice_free (DispatchData, data);
469 }
470
471 static DispatchData *
472 dispatch_data_ref (DispatchData *data)
473 {
474   g_atomic_int_inc (&data->ref_count);
475   return data;
476 }
477
478 static gboolean
479 dispatch_invoke_in_context_func (gpointer user_data)
480 {
481   DispatchData *data = user_data;
482   data->method_call_func (g_dbus_method_invocation_get_connection (data->invocation),
483                           g_dbus_method_invocation_get_sender (data->invocation),
484                           g_dbus_method_invocation_get_object_path (data->invocation),
485                           g_dbus_method_invocation_get_interface_name (data->invocation),
486                           g_dbus_method_invocation_get_method_name (data->invocation),
487                           g_dbus_method_invocation_get_parameters (data->invocation),
488                           data->invocation,
489                           g_dbus_method_invocation_get_user_data (data->invocation));
490   return FALSE;
491 }
492
493 static void
494 dispatch_in_thread_func (GTask        *task,
495                          gpointer      source_object,
496                          gpointer      task_data,
497                          GCancellable *cancellable)
498 {
499   DispatchData *data = task_data;
500   GDBusInterfaceSkeletonFlags flags;
501   GDBusObject *object;
502   gboolean authorized;
503
504   g_mutex_lock (&data->interface->priv->lock);
505   flags = data->interface->priv->flags;
506   object = data->interface->priv->object;
507   if (object != NULL)
508     g_object_ref (object);
509   g_mutex_unlock (&data->interface->priv->lock);
510
511   /* first check on the enclosing object (if any), then the interface */
512   authorized = TRUE;
513   if (object != NULL)
514     {
515       g_signal_emit_by_name (object,
516                              "authorize-method",
517                              data->interface,
518                              data->invocation,
519                              &authorized);
520     }
521   if (authorized)
522     {
523       g_signal_emit (data->interface,
524                      signals[G_AUTHORIZE_METHOD_SIGNAL],
525                      0,
526                      data->invocation,
527                      &authorized);
528     }
529
530   if (authorized)
531     {
532       gboolean run_in_thread;
533       run_in_thread = (flags & G_DBUS_INTERFACE_SKELETON_FLAGS_HANDLE_METHOD_INVOCATIONS_IN_THREAD);
534       if (run_in_thread)
535         {
536           /* might as well just re-use the existing thread */
537           data->method_call_func (g_dbus_method_invocation_get_connection (data->invocation),
538                                   g_dbus_method_invocation_get_sender (data->invocation),
539                                   g_dbus_method_invocation_get_object_path (data->invocation),
540                                   g_dbus_method_invocation_get_interface_name (data->invocation),
541                                   g_dbus_method_invocation_get_method_name (data->invocation),
542                                   g_dbus_method_invocation_get_parameters (data->invocation),
543                                   data->invocation,
544                                   g_dbus_method_invocation_get_user_data (data->invocation));
545         }
546       else
547         {
548           /* bah, back to original context */
549           g_main_context_invoke_full (g_task_get_context (task),
550                                       g_task_get_priority (task),
551                                       dispatch_invoke_in_context_func,
552                                       dispatch_data_ref (data),
553                                       (GDestroyNotify) dispatch_data_unref);
554         }
555     }
556   else
557     {
558       /* do nothing */
559     }
560
561   if (object != NULL)
562     g_object_unref (object);
563 }
564
565 static void
566 g_dbus_interface_method_dispatch_helper (GDBusInterfaceSkeleton       *interface,
567                                          GDBusInterfaceMethodCallFunc  method_call_func,
568                                          GDBusMethodInvocation        *invocation)
569 {
570   gboolean has_handlers;
571   gboolean has_default_class_handler;
572   gboolean emit_authorized_signal;
573   gboolean run_in_thread;
574   GDBusInterfaceSkeletonFlags flags;
575   GDBusObject *object;
576
577   g_return_if_fail (G_IS_DBUS_INTERFACE_SKELETON (interface));
578   g_return_if_fail (method_call_func != NULL);
579   g_return_if_fail (G_IS_DBUS_METHOD_INVOCATION (invocation));
580
581   g_mutex_lock (&interface->priv->lock);
582   flags = interface->priv->flags;
583   object = interface->priv->object;
584   if (object != NULL)
585     g_object_ref (object);
586   g_mutex_unlock (&interface->priv->lock);
587
588   /* optimization for the common case where
589    *
590    *  a) no handler is connected and class handler is not overridden (both interface and object); and
591    *  b) method calls are not dispatched in a thread
592    */
593   has_handlers = g_signal_has_handler_pending (interface,
594                                                signals[G_AUTHORIZE_METHOD_SIGNAL],
595                                                0,
596                                                TRUE);
597   has_default_class_handler = (G_DBUS_INTERFACE_SKELETON_GET_CLASS (interface)->g_authorize_method ==
598                                g_dbus_interface_skeleton_g_authorize_method_default);
599
600   emit_authorized_signal = (has_handlers || !has_default_class_handler);
601   if (!emit_authorized_signal)
602     {
603       if (object != NULL)
604         emit_authorized_signal = _g_dbus_object_skeleton_has_authorize_method_handlers (G_DBUS_OBJECT_SKELETON (object));
605     }
606
607   run_in_thread = (flags & G_DBUS_INTERFACE_SKELETON_FLAGS_HANDLE_METHOD_INVOCATIONS_IN_THREAD);
608   if (!emit_authorized_signal && !run_in_thread)
609     {
610       method_call_func (g_dbus_method_invocation_get_connection (invocation),
611                         g_dbus_method_invocation_get_sender (invocation),
612                         g_dbus_method_invocation_get_object_path (invocation),
613                         g_dbus_method_invocation_get_interface_name (invocation),
614                         g_dbus_method_invocation_get_method_name (invocation),
615                         g_dbus_method_invocation_get_parameters (invocation),
616                         invocation,
617                         g_dbus_method_invocation_get_user_data (invocation));
618     }
619   else
620     {
621       GTask *task;
622       DispatchData *data;
623
624       data = g_slice_new0 (DispatchData);
625       data->interface = interface;
626       data->method_call_func = method_call_func;
627       data->invocation = invocation;
628       data->ref_count = 1;
629
630       task = g_task_new (interface, NULL, NULL, NULL);
631       g_task_set_task_data (task, data, (GDestroyNotify) dispatch_data_unref);
632       g_task_run_in_thread (task, dispatch_in_thread_func);
633       g_object_unref (task);
634     }
635
636   if (object != NULL)
637     g_object_unref (object);
638 }
639
640 static void
641 skeleton_intercept_handle_method_call (GDBusConnection       *connection,
642                                        const gchar           *sender,
643                                        const gchar           *object_path,
644                                        const gchar           *interface_name,
645                                        const gchar           *method_name,
646                                        GVariant              *parameters,
647                                        GDBusMethodInvocation *invocation,
648                                        gpointer               user_data)
649 {
650   GDBusInterfaceSkeleton *interface = G_DBUS_INTERFACE_SKELETON (user_data);
651   g_dbus_interface_method_dispatch_helper (interface,
652                                            g_dbus_interface_skeleton_get_vtable (interface)->method_call,
653                                            invocation);
654 }
655
656 /* ---------------------------------------------------------------------------------------------------- */
657
658 static ConnectionData *
659 new_connection (GDBusConnection *connection,
660                 guint            registration_id)
661 {
662   ConnectionData *data;
663
664   data = g_slice_new0 (ConnectionData);
665   data->connection      = g_object_ref (connection);
666   data->registration_id = registration_id;
667
668   return data;
669 }
670
671 static void
672 free_connection (ConnectionData *data)
673 {
674   if (data != NULL)
675     {
676       g_object_unref (data->connection);
677       g_slice_free (ConnectionData, data);
678     }
679 }
680
681 static gboolean
682 add_connection_locked (GDBusInterfaceSkeleton *interface_,
683                        GDBusConnection        *connection,
684                        GError                **error)
685 {
686   ConnectionData *data;
687   guint registration_id;
688   gboolean ret = FALSE;
689
690   if (interface_->priv->hooked_vtable == NULL)
691     {
692       /* Hook the vtable since we need to intercept method calls for
693        * ::g-authorize-method and for dispatching in thread vs
694        * context
695        *
696        * We need to wait until subclasses have had time to initialize
697        * properly before building the hooked_vtable, so we create it
698        * once at the last minute.
699        */
700       interface_->priv->hooked_vtable = g_memdup (g_dbus_interface_skeleton_get_vtable (interface_), sizeof (GDBusInterfaceVTable));
701       interface_->priv->hooked_vtable->method_call = skeleton_intercept_handle_method_call;
702     }
703
704   registration_id = g_dbus_connection_register_object (connection,
705                                                        interface_->priv->object_path,
706                                                        g_dbus_interface_skeleton_get_info (interface_),
707                                                        interface_->priv->hooked_vtable,
708                                                        interface_,
709                                                        NULL, /* user_data_free_func */
710                                                        error);
711
712   if (registration_id > 0)
713     {
714       data = new_connection (connection, registration_id);
715       interface_->priv->connections = g_slist_append (interface_->priv->connections, data);
716       ret = TRUE;
717     }
718
719   return ret;
720 }
721
722 static void
723 remove_connection_locked (GDBusInterfaceSkeleton *interface_,
724                           GDBusConnection        *connection)
725 {
726   ConnectionData *data;
727   GSList *l;
728
729   /* Get the connection in the list and unregister ... */
730   for (l = interface_->priv->connections; l != NULL; l = l->next)
731     {
732       data = l->data;
733       if (data->connection == connection)
734         {
735           g_warn_if_fail (g_dbus_connection_unregister_object (data->connection, data->registration_id));
736           free_connection (data);
737           interface_->priv->connections = g_slist_delete_link (interface_->priv->connections, l);
738           /* we are guaranteed that the connection is only added once, so bail out early */
739           goto out;
740         }
741     }
742  out:
743   ;
744 }
745
746 static void
747 set_object_path_locked (GDBusInterfaceSkeleton *interface_,
748                         const gchar            *object_path)
749 {
750   if (g_strcmp0 (interface_->priv->object_path, object_path) != 0)
751     {
752       g_free (interface_->priv->object_path);
753       interface_->priv->object_path = g_strdup (object_path);
754     }
755 }
756
757 /* ---------------------------------------------------------------------------------------------------- */
758
759 /**
760  * g_dbus_interface_skeleton_get_connection:
761  * @interface_: A #GDBusInterfaceSkeleton.
762  *
763  * Gets the first connection that @interface_ is exported on, if any.
764  *
765  * Returns: (transfer none): A #GDBusConnection or %NULL if @interface_ is
766  * not exported anywhere. Do not free, the object belongs to @interface_.
767  *
768  * Since: 2.30
769  */
770 GDBusConnection *
771 g_dbus_interface_skeleton_get_connection (GDBusInterfaceSkeleton *interface_)
772 {
773   ConnectionData  *data;
774   GDBusConnection *ret;
775
776   g_return_val_if_fail (G_IS_DBUS_INTERFACE_SKELETON (interface_), NULL);
777   g_mutex_lock (&interface_->priv->lock);
778
779   ret = NULL;
780   if (interface_->priv->connections != NULL)
781     {
782       data = interface_->priv->connections->data;
783       if (data != NULL)
784         ret = data->connection;
785     }
786
787   g_mutex_unlock (&interface_->priv->lock);
788
789   return ret;
790 }
791
792 /**
793  * g_dbus_interface_skeleton_get_connections:
794  * @interface_: A #GDBusInterfaceSkeleton.
795  *
796  * Gets a list of the connections that @interface_ is exported on.
797  *
798  * Returns: (element-type GDBusConnection) (transfer full): A list of
799  *   all the connections that @interface_ is exported on. The returned
800  *   list should be freed with g_list_free() after each element has
801  *   been freed with g_object_unref().
802  *
803  * Since: 2.32
804  */
805 GList *
806 g_dbus_interface_skeleton_get_connections (GDBusInterfaceSkeleton *interface_)
807 {
808   GList           *connections;
809   GSList          *l;
810   ConnectionData  *data;
811
812   g_return_val_if_fail (G_IS_DBUS_INTERFACE_SKELETON (interface_), NULL);
813
814   g_mutex_lock (&interface_->priv->lock);
815   connections = NULL;
816
817   for (l = interface_->priv->connections; l != NULL; l = l->next)
818     {
819       data        = l->data;
820       connections = g_list_prepend (connections,
821                                     /* Return a reference to each connection */
822                                     g_object_ref (data->connection));
823     }
824
825   g_mutex_unlock (&interface_->priv->lock);
826
827   return g_list_reverse (connections);
828 }
829
830 /**
831  * g_dbus_interface_skeleton_has_connection:
832  * @interface_: A #GDBusInterfaceSkeleton.
833  * @connection: A #GDBusConnection.
834  *
835  * Checks if @interface_ is exported on @connection.
836  *
837  * Returns: %TRUE if @interface_ is exported on @connection, %FALSE otherwise.
838  *
839  * Since: 2.32
840  */
841 gboolean
842 g_dbus_interface_skeleton_has_connection (GDBusInterfaceSkeleton     *interface_,
843                                           GDBusConnection            *connection)
844 {
845   GSList *l;
846   gboolean ret = FALSE;
847
848   g_return_val_if_fail (G_IS_DBUS_INTERFACE_SKELETON (interface_), FALSE);
849   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), FALSE);
850
851   g_mutex_lock (&interface_->priv->lock);
852
853   for (l = interface_->priv->connections; l != NULL; l = l->next)
854     {
855       ConnectionData *data = l->data;
856       if (data->connection == connection)
857         {
858           ret = TRUE;
859           goto out;
860         }
861     }
862
863  out:
864   g_mutex_unlock (&interface_->priv->lock);
865   return ret;
866 }
867
868 /**
869  * g_dbus_interface_skeleton_get_object_path:
870  * @interface_: A #GDBusInterfaceSkeleton.
871  *
872  * Gets the object path that @interface_ is exported on, if any.
873  *
874  * Returns: A string owned by @interface_ or %NULL if @interface_ is not exported
875  * anywhere. Do not free, the string belongs to @interface_.
876  *
877  * Since: 2.30
878  */
879 const gchar *
880 g_dbus_interface_skeleton_get_object_path (GDBusInterfaceSkeleton *interface_)
881 {
882   const gchar *ret;
883   g_return_val_if_fail (G_IS_DBUS_INTERFACE_SKELETON (interface_), NULL);
884   g_mutex_lock (&interface_->priv->lock);
885   ret = interface_->priv->object_path;
886   g_mutex_unlock (&interface_->priv->lock);
887   return ret;
888 }
889
890 /**
891  * g_dbus_interface_skeleton_export:
892  * @interface_: The D-Bus interface to export.
893  * @connection: A #GDBusConnection to export @interface_ on.
894  * @object_path: The path to export the interface at.
895  * @error: Return location for error or %NULL.
896  *
897  * Exports @interface_ at @object_path on @connection.
898  *
899  * This can be called multiple times to export the same @interface_
900  * onto multiple connections however the @object_path provided must be
901  * the same for all connections.
902  *
903  * Use g_dbus_interface_skeleton_unexport() to unexport the object.
904  *
905  * Returns: %TRUE if the interface was exported on @connection, otherwise %FALSE with
906  * @error set.
907  *
908  * Since: 2.30
909  */
910 gboolean
911 g_dbus_interface_skeleton_export (GDBusInterfaceSkeleton  *interface_,
912                                   GDBusConnection         *connection,
913                                   const gchar             *object_path,
914                                   GError                 **error)
915 {
916   gboolean ret = FALSE;
917
918   g_return_val_if_fail (G_IS_DBUS_INTERFACE_SKELETON (interface_), FALSE);
919   g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), FALSE);
920   g_return_val_if_fail (g_variant_is_object_path (object_path), FALSE);
921   g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
922
923   /* Assert that the object path is the same for multiple connections here */
924   g_return_val_if_fail (interface_->priv->object_path == NULL ||
925                         g_strcmp0 (interface_->priv->object_path, object_path) == 0, FALSE);
926
927   g_mutex_lock (&interface_->priv->lock);
928
929   /* Set the object path */
930   set_object_path_locked (interface_, object_path);
931
932   /* Add the connection */
933   ret = add_connection_locked (interface_, connection, error);
934
935   g_mutex_unlock (&interface_->priv->lock);
936   return ret;
937 }
938
939 /**
940  * g_dbus_interface_skeleton_unexport:
941  * @interface_: A #GDBusInterfaceSkeleton.
942  *
943  * Stops exporting @interface_ on all connections it is exported on.
944  *
945  * To unexport @interface_ from only a single connection, use
946  * g_dbus_interface_skeleton_unexport_from_connection()
947  *
948  * Since: 2.30
949  */
950 void
951 g_dbus_interface_skeleton_unexport (GDBusInterfaceSkeleton *interface_)
952 {
953   g_return_if_fail (G_IS_DBUS_INTERFACE_SKELETON (interface_));
954   g_return_if_fail (interface_->priv->connections != NULL);
955
956   g_mutex_lock (&interface_->priv->lock);
957
958   g_assert (interface_->priv->object_path != NULL);
959   g_assert (interface_->priv->hooked_vtable != NULL);
960
961   /* Remove all connections */
962   while (interface_->priv->connections != NULL)
963     {
964       ConnectionData *data = interface_->priv->connections->data;
965       remove_connection_locked (interface_, data->connection);
966     }
967
968   /* Unset the object path since there are no connections left */
969   set_object_path_locked (interface_, NULL);
970
971   g_mutex_unlock (&interface_->priv->lock);
972 }
973
974
975 /**
976  * g_dbus_interface_skeleton_unexport_from_connection:
977  * @interface_: A #GDBusInterfaceSkeleton.
978  * @connection: A #GDBusConnection.
979  *
980  * Stops exporting @interface_ on @connection.
981  *
982  * To stop exporting on all connections the interface is exported on,
983  * use g_dbus_interface_skeleton_unexport().
984  *
985  * Since: 2.32
986  */
987 void
988 g_dbus_interface_skeleton_unexport_from_connection (GDBusInterfaceSkeleton *interface_,
989                                                     GDBusConnection        *connection)
990 {
991   g_return_if_fail (G_IS_DBUS_INTERFACE_SKELETON (interface_));
992   g_return_if_fail (G_IS_DBUS_CONNECTION (connection));
993   g_return_if_fail (interface_->priv->connections != NULL);
994
995   g_mutex_lock (&interface_->priv->lock);
996
997   g_assert (interface_->priv->object_path != NULL);
998   g_assert (interface_->priv->hooked_vtable != NULL);
999
1000   remove_connection_locked (interface_, connection);
1001
1002   /* Reset the object path if we removed the last connection */
1003   if (interface_->priv->connections == NULL)
1004     set_object_path_locked (interface_, NULL);
1005
1006   g_mutex_unlock (&interface_->priv->lock);
1007 }
1008
1009 /* ---------------------------------------------------------------------------------------------------- */