Coverage Report

Created: 2025-07-23 08:13

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