Coverage Report

Created: 2026-07-16 06:32

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/irssi/subprojects/glib-2.74.7/gio/gdbusaddress.c
Line
Count
Source
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
#include "config.h"
24
25
#include <stdlib.h>
26
#include <string.h>
27
#include <stdio.h>
28
#include <errno.h>
29
30
#include "gioerror.h"
31
#include "gdbusutils.h"
32
#include "gdbusaddress.h"
33
#include "gdbuserror.h"
34
#include "gioenumtypes.h"
35
#include "glib-private.h"
36
#include "gnetworkaddress.h"
37
#include "gsocketclient.h"
38
#include "giostream.h"
39
#include "gasyncresult.h"
40
#include "gtask.h"
41
#include "glib-private.h"
42
#include "gdbusprivate.h"
43
#include "gstdio.h"
44
45
#ifdef HAVE_UNISTD_H
46
#include <unistd.h>
47
#endif
48
#include <sys/stat.h>
49
#include <sys/types.h>
50
#include <gio/gunixsocketaddress.h>
51
52
#ifdef G_OS_WIN32
53
#include <windows.h>
54
#endif
55
56
#include "glibintl.h"
57
58
/**
59
 * SECTION:gdbusaddress
60
 * @title: D-Bus Addresses
61
 * @short_description: D-Bus connection endpoints
62
 * @include: gio/gio.h
63
 *
64
 * Routines for working with D-Bus addresses. A D-Bus address is a string
65
 * like `unix:tmpdir=/tmp/my-app-name`. The exact format of addresses
66
 * is explained in detail in the
67
 * [D-Bus specification](http://dbus.freedesktop.org/doc/dbus-specification.html#addresses).
68
 *
69
 * TCP D-Bus connections are supported, but accessing them via a proxy is
70
 * currently not supported.
71
 *
72
 * Since GLib 2.72, `unix:` addresses are supported on Windows with `AF_UNIX`
73
 * support (Windows 10).
74
 */
75
76
static gchar *get_session_address_platform_specific (GError **error);
77
static gchar *get_session_address_dbus_launch       (GError **error);
78
79
/* ---------------------------------------------------------------------------------------------------- */
80
81
/**
82
 * g_dbus_is_address:
83
 * @string: A string.
84
 *
85
 * Checks if @string is a
86
 * [D-Bus address](https://dbus.freedesktop.org/doc/dbus-specification.html#addresses).
87
 *
88
 * This doesn't check if @string is actually supported by #GDBusServer
89
 * or #GDBusConnection - use g_dbus_is_supported_address() to do more
90
 * checks.
91
 *
92
 * Returns: %TRUE if @string is a valid D-Bus address, %FALSE otherwise.
93
 *
94
 * Since: 2.26
95
 */
96
gboolean
97
g_dbus_is_address (const gchar *string)
98
0
{
99
0
  guint n;
100
0
  gchar **a;
101
0
  gboolean ret;
102
103
0
  ret = FALSE;
104
105
0
  g_return_val_if_fail (string != NULL, FALSE);
106
107
0
  a = g_strsplit (string, ";", 0);
108
0
  if (a[0] == NULL)
109
0
    goto out;
110
111
0
  for (n = 0; a[n] != NULL; n++)
112
0
    {
113
0
      if (!_g_dbus_address_parse_entry (a[n],
114
0
                                        NULL,
115
0
                                        NULL,
116
0
                                        NULL))
117
0
        goto out;
118
0
    }
119
120
0
  ret = TRUE;
121
122
0
 out:
123
0
  g_strfreev (a);
124
0
  return ret;
125
0
}
126
127
static gboolean
128
is_valid_unix (const gchar  *address_entry,
129
               GHashTable   *key_value_pairs,
130
               GError      **error)
131
0
{
132
0
  gboolean ret;
133
0
  GList *keys;
134
0
  GList *l;
135
0
  const gchar *path;
136
0
  const gchar *dir;
137
0
  const gchar *tmpdir;
138
0
  const gchar *abstract;
139
140
0
  ret = FALSE;
141
0
  keys = NULL;
142
0
  path = NULL;
143
0
  dir = NULL;
144
0
  tmpdir = NULL;
145
0
  abstract = NULL;
146
147
0
  keys = g_hash_table_get_keys (key_value_pairs);
148
0
  for (l = keys; l != NULL; l = l->next)
149
0
    {
150
0
      const gchar *key = l->data;
151
0
      if (g_strcmp0 (key, "path") == 0)
152
0
        path = g_hash_table_lookup (key_value_pairs, key);
153
0
      else if (g_strcmp0 (key, "dir") == 0)
154
0
        dir = g_hash_table_lookup (key_value_pairs, key);
155
0
      else if (g_strcmp0 (key, "tmpdir") == 0)
156
0
        tmpdir = g_hash_table_lookup (key_value_pairs, key);
157
0
      else if (g_strcmp0 (key, "abstract") == 0)
158
0
        abstract = g_hash_table_lookup (key_value_pairs, key);
159
0
      else if (g_strcmp0 (key, "guid") != 0)
160
0
        {
161
0
          g_set_error (error,
162
0
                       G_IO_ERROR,
163
0
                       G_IO_ERROR_INVALID_ARGUMENT,
164
0
                       _("Unsupported key “%s” in address entry “%s”"),
165
0
                       key,
166
0
                       address_entry);
167
0
          goto out;
168
0
        }
169
0
    }
170
171
  /* Exactly one key must be set */
172
0
  if ((path != NULL) + (dir != NULL) + (tmpdir != NULL) + (abstract != NULL) > 1)
173
0
    {
174
0
      g_set_error (error,
175
0
             G_IO_ERROR,
176
0
             G_IO_ERROR_INVALID_ARGUMENT,
177
0
             _("Meaningless key/value pair combination in address entry “%s”"),
178
0
             address_entry);
179
0
      goto out;
180
0
    }
181
0
  else if (path == NULL && dir == NULL && tmpdir == NULL && abstract == NULL)
182
0
    {
183
0
      g_set_error (error,
184
0
                   G_IO_ERROR,
185
0
                   G_IO_ERROR_INVALID_ARGUMENT,
186
0
                   _("Address “%s” is invalid (need exactly one of path, dir, tmpdir, or abstract keys)"),
187
0
                   address_entry);
188
0
      goto out;
189
0
    }
190
191
0
  ret = TRUE;
192
193
0
 out:
194
0
  g_list_free (keys);
195
196
0
  return ret;
197
0
}
198
199
static gboolean
200
is_valid_nonce_tcp (const gchar  *address_entry,
201
                    GHashTable   *key_value_pairs,
202
                    GError      **error)
203
0
{
204
0
  gboolean ret;
205
0
  GList *keys;
206
0
  GList *l;
207
0
  const gchar *host;
208
0
  const gchar *port;
209
0
  const gchar *family;
210
0
  const gchar *nonce_file;
211
0
  gint port_num;
212
0
  gchar *endp;
213
214
0
  ret = FALSE;
215
0
  keys = NULL;
216
0
  host = NULL;
217
0
  port = NULL;
218
0
  family = NULL;
219
0
  nonce_file = NULL;
220
221
0
  keys = g_hash_table_get_keys (key_value_pairs);
222
0
  for (l = keys; l != NULL; l = l->next)
223
0
    {
224
0
      const gchar *key = l->data;
225
0
      if (g_strcmp0 (key, "host") == 0)
226
0
        host = g_hash_table_lookup (key_value_pairs, key);
227
0
      else if (g_strcmp0 (key, "port") == 0)
228
0
        port = g_hash_table_lookup (key_value_pairs, key);
229
0
      else if (g_strcmp0 (key, "family") == 0)
230
0
        family = g_hash_table_lookup (key_value_pairs, key);
231
0
      else if (g_strcmp0 (key, "noncefile") == 0)
232
0
        nonce_file = g_hash_table_lookup (key_value_pairs, key);
233
0
      else if (g_strcmp0 (key, "guid") != 0)
234
0
        {
235
0
          g_set_error (error,
236
0
                       G_IO_ERROR,
237
0
                       G_IO_ERROR_INVALID_ARGUMENT,
238
0
                       _("Unsupported key “%s” in address entry “%s”"),
239
0
                       key,
240
0
                       address_entry);
241
0
          goto out;
242
0
        }
243
0
    }
244
245
0
  if (port != NULL)
246
0
    {
247
0
      port_num = strtol (port, &endp, 10);
248
0
      if ((*port == '\0' || *endp != '\0') || port_num < 0 || port_num >= 65536)
249
0
        {
250
0
          g_set_error (error,
251
0
                       G_IO_ERROR,
252
0
                       G_IO_ERROR_INVALID_ARGUMENT,
253
0
                       _("Error in address “%s” — the “%s” attribute is malformed"),
254
0
                       address_entry, "port");
255
0
          goto out;
256
0
        }
257
0
    }
258
259
0
  if (family != NULL && !(g_strcmp0 (family, "ipv4") == 0 || g_strcmp0 (family, "ipv6") == 0))
260
0
    {
261
0
      g_set_error (error,
262
0
                   G_IO_ERROR,
263
0
                   G_IO_ERROR_INVALID_ARGUMENT,
264
0
                   _("Error in address “%s” — the “%s” attribute is malformed"),
265
0
                   address_entry, "family");
266
0
      goto out;
267
0
    }
268
269
0
  if (host != NULL)
270
0
    {
271
      /* TODO: validate host */
272
0
    }
273
274
0
  if (nonce_file != NULL && *nonce_file == '\0')
275
0
    {
276
0
      g_set_error (error,
277
0
                   G_IO_ERROR,
278
0
                   G_IO_ERROR_INVALID_ARGUMENT,
279
0
                   _("Error in address “%s” — the “%s” attribute is malformed"),
280
0
                   address_entry, "noncefile");
281
0
      goto out;
282
0
    }
283
284
0
  ret = TRUE;
285
286
0
 out:
287
0
  g_list_free (keys);
288
289
0
  return ret;
290
0
}
291
292
static gboolean
293
is_valid_tcp (const gchar  *address_entry,
294
              GHashTable   *key_value_pairs,
295
              GError      **error)
296
0
{
297
0
  gboolean ret;
298
0
  GList *keys;
299
0
  GList *l;
300
0
  const gchar *host;
301
0
  const gchar *port;
302
0
  const gchar *family;
303
0
  gint port_num;
304
0
  gchar *endp;
305
306
0
  ret = FALSE;
307
0
  keys = NULL;
308
0
  host = NULL;
309
0
  port = NULL;
310
0
  family = NULL;
311
312
0
  keys = g_hash_table_get_keys (key_value_pairs);
313
0
  for (l = keys; l != NULL; l = l->next)
314
0
    {
315
0
      const gchar *key = l->data;
316
0
      if (g_strcmp0 (key, "host") == 0)
317
0
        host = g_hash_table_lookup (key_value_pairs, key);
318
0
      else if (g_strcmp0 (key, "port") == 0)
319
0
        port = g_hash_table_lookup (key_value_pairs, key);
320
0
      else if (g_strcmp0 (key, "family") == 0)
321
0
        family = g_hash_table_lookup (key_value_pairs, key);
322
0
      else if (g_strcmp0 (key, "guid") != 0)
323
0
        {
324
0
          g_set_error (error,
325
0
                       G_IO_ERROR,
326
0
                       G_IO_ERROR_INVALID_ARGUMENT,
327
0
                       _("Unsupported key “%s” in address entry “%s”"),
328
0
                       key,
329
0
                       address_entry);
330
0
          goto out;
331
0
        }
332
0
    }
333
334
0
  if (port != NULL)
335
0
    {
336
0
      port_num = strtol (port, &endp, 10);
337
0
      if ((*port == '\0' || *endp != '\0') || port_num < 0 || port_num >= 65536)
338
0
        {
339
0
          g_set_error (error,
340
0
                       G_IO_ERROR,
341
0
                       G_IO_ERROR_INVALID_ARGUMENT,
342
0
                       _("Error in address “%s” — the “%s” attribute is malformed"),
343
0
                       address_entry, "port");
344
0
          goto out;
345
0
        }
346
0
    }
347
348
0
  if (family != NULL && !(g_strcmp0 (family, "ipv4") == 0 || g_strcmp0 (family, "ipv6") == 0))
349
0
    {
350
0
      g_set_error (error,
351
0
                   G_IO_ERROR,
352
0
                   G_IO_ERROR_INVALID_ARGUMENT,
353
0
                   _("Error in address “%s” — the “%s” attribute is malformed"),
354
0
                   address_entry, "family");
355
0
      goto out;
356
0
    }
357
358
0
  if (host != NULL)
359
0
    {
360
      /* TODO: validate host */
361
0
    }
362
363
0
  ret= TRUE;
364
365
0
 out:
366
0
  g_list_free (keys);
367
368
0
  return ret;
369
0
}
370
371
/**
372
 * g_dbus_is_supported_address:
373
 * @string: A string.
374
 * @error: Return location for error or %NULL.
375
 *
376
 * Like g_dbus_is_address() but also checks if the library supports the
377
 * transports in @string and that key/value pairs for each transport
378
 * are valid. See the specification of the
379
 * [D-Bus address format](https://dbus.freedesktop.org/doc/dbus-specification.html#addresses).
380
 *
381
 * Returns: %TRUE if @string is a valid D-Bus address that is
382
 * supported by this library, %FALSE if @error is set.
383
 *
384
 * Since: 2.26
385
 */
386
gboolean
387
g_dbus_is_supported_address (const gchar  *string,
388
                             GError      **error)
389
0
{
390
0
  guint n;
391
0
  gchar **a;
392
0
  gboolean ret;
393
394
0
  ret = FALSE;
395
396
0
  g_return_val_if_fail (string != NULL, FALSE);
397
0
  g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
398
399
0
  a = g_strsplit (string, ";", 0);
400
0
  for (n = 0; a[n] != NULL; n++)
401
0
    {
402
0
      gchar *transport_name;
403
0
      GHashTable *key_value_pairs;
404
0
      gboolean supported;
405
406
0
      if (!_g_dbus_address_parse_entry (a[n],
407
0
                                        &transport_name,
408
0
                                        &key_value_pairs,
409
0
                                        error))
410
0
        goto out;
411
412
0
      supported = FALSE;
413
0
      if (g_strcmp0 (transport_name, "unix") == 0)
414
0
        supported = is_valid_unix (a[n], key_value_pairs, error);
415
0
      else if (g_strcmp0 (transport_name, "tcp") == 0)
416
0
        supported = is_valid_tcp (a[n], key_value_pairs, error);
417
0
      else if (g_strcmp0 (transport_name, "nonce-tcp") == 0)
418
0
        supported = is_valid_nonce_tcp (a[n], key_value_pairs, error);
419
0
      else if (g_strcmp0 (a[n], "autolaunch:") == 0)
420
0
        supported = TRUE;
421
0
      else
422
0
        g_set_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
423
0
                     _("Unknown or unsupported transport “%s” for address “%s”"),
424
0
                     transport_name, a[n]);
425
426
0
      g_free (transport_name);
427
0
      g_hash_table_unref (key_value_pairs);
428
429
0
      if (!supported)
430
0
        goto out;
431
0
    }
432
433
0
  ret = TRUE;
434
435
0
 out:
436
0
  g_strfreev (a);
437
438
0
  g_assert (ret || (!ret && (error == NULL || *error != NULL)));
439
440
0
  return ret;
441
0
}
442
443
gboolean
444
_g_dbus_address_parse_entry (const gchar  *address_entry,
445
                             gchar       **out_transport_name,
446
                             GHashTable  **out_key_value_pairs,
447
                             GError      **error)
448
0
{
449
0
  gboolean ret;
450
0
  GHashTable *key_value_pairs;
451
0
  gchar *transport_name;
452
0
  gchar **kv_pairs;
453
0
  const gchar *s;
454
0
  guint n;
455
456
0
  ret = FALSE;
457
0
  kv_pairs = NULL;
458
0
  transport_name = NULL;
459
0
  key_value_pairs = NULL;
460
461
0
  s = strchr (address_entry, ':');
462
0
  if (s == NULL)
463
0
    {
464
0
      g_set_error (error,
465
0
                   G_IO_ERROR,
466
0
                   G_IO_ERROR_INVALID_ARGUMENT,
467
0
                   _("Address element “%s” does not contain a colon (:)"),
468
0
                   address_entry);
469
0
      goto out;
470
0
    }
471
0
  else if (s == address_entry)
472
0
    {
473
0
      g_set_error (error,
474
0
                   G_IO_ERROR,
475
0
                   G_IO_ERROR_INVALID_ARGUMENT,
476
0
                   _("Transport name in address element “%s” must not be empty"),
477
0
                   address_entry);
478
0
      goto out;
479
0
    }
480
481
0
  transport_name = g_strndup (address_entry, s - address_entry);
482
0
  key_value_pairs = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free);
483
484
0
  kv_pairs = g_strsplit (s + 1, ",", 0);
485
0
  for (n = 0; kv_pairs[n] != NULL; n++)
486
0
    {
487
0
      const gchar *kv_pair = kv_pairs[n];
488
0
      gchar *key;
489
0
      gchar *value;
490
491
0
      s = strchr (kv_pair, '=');
492
0
      if (s == NULL)
493
0
        {
494
0
          g_set_error (error,
495
0
                       G_IO_ERROR,
496
0
                       G_IO_ERROR_INVALID_ARGUMENT,
497
0
                       _("Key/Value pair %d, “%s”, in address element “%s” does not contain an equal sign"),
498
0
                       n,
499
0
                       kv_pair,
500
0
                       address_entry);
501
0
          goto out;
502
0
        }
503
0
      else if (s == kv_pair)
504
0
        {
505
0
          g_set_error (error,
506
0
                       G_IO_ERROR,
507
0
                       G_IO_ERROR_INVALID_ARGUMENT,
508
0
                       _("Key/Value pair %d, “%s”, in address element “%s” must not have an empty key"),
509
0
                       n,
510
0
                       kv_pair,
511
0
                       address_entry);
512
0
          goto out;
513
0
        }
514
515
0
      key = g_uri_unescape_segment (kv_pair, s, NULL);
516
0
      value = g_uri_unescape_segment (s + 1, kv_pair + strlen (kv_pair), NULL);
517
0
      if (key == NULL || value == NULL)
518
0
        {
519
0
          g_set_error (error,
520
0
                       G_IO_ERROR,
521
0
                       G_IO_ERROR_INVALID_ARGUMENT,
522
0
                       _("Error unescaping key or value in Key/Value pair %d, “%s”, in address element “%s”"),
523
0
                       n,
524
0
                       kv_pair,
525
0
                       address_entry);
526
0
          g_free (key);
527
0
          g_free (value);
528
0
          goto out;
529
0
        }
530
0
      g_hash_table_insert (key_value_pairs, key, value);
531
0
    }
532
533
0
  ret = TRUE;
534
535
0
out:
536
0
  if (ret)
537
0
    {
538
0
      if (out_transport_name != NULL)
539
0
        *out_transport_name = g_steal_pointer (&transport_name);
540
0
      if (out_key_value_pairs != NULL)
541
0
        *out_key_value_pairs = g_steal_pointer (&key_value_pairs);
542
0
    }
543
544
0
  g_clear_pointer (&key_value_pairs, g_hash_table_unref);
545
0
  g_free (transport_name);
546
0
  g_strfreev (kv_pairs);
547
548
0
  return ret;
549
0
}
550
551
/* ---------------------------------------------------------------------------------------------------- */
552
553
static GIOStream *
554
g_dbus_address_try_connect_one (const gchar   *address_entry,
555
                                gchar        **out_guid,
556
                                GCancellable  *cancellable,
557
                                GError       **error);
558
559
/* TODO: Declare an extension point called GDBusTransport (or similar)
560
 * and move code below to extensions implementing said extension
561
 * point. That way we can implement a D-Bus transport over X11 without
562
 * making libgio link to libX11...
563
 */
564
static GIOStream *
565
g_dbus_address_connect (const gchar   *address_entry,
566
                        const gchar   *transport_name,
567
                        GHashTable    *key_value_pairs,
568
                        GCancellable  *cancellable,
569
                        GError       **error)
570
0
{
571
0
  GIOStream *ret;
572
0
  GSocketConnectable *connectable;
573
0
  const gchar *nonce_file;
574
575
0
  connectable = NULL;
576
0
  ret = NULL;
577
0
  nonce_file = NULL;
578
579
0
  if (g_strcmp0 (transport_name, "unix") == 0)
580
0
    {
581
0
      const gchar *path;
582
0
      const gchar *abstract;
583
0
      path = g_hash_table_lookup (key_value_pairs, "path");
584
0
      abstract = g_hash_table_lookup (key_value_pairs, "abstract");
585
0
      if ((path == NULL && abstract == NULL) || (path != NULL && abstract != NULL))
586
0
        {
587
0
          g_set_error (error,
588
0
                       G_IO_ERROR,
589
0
                       G_IO_ERROR_INVALID_ARGUMENT,
590
0
                       _("Error in address “%s” — the unix transport requires exactly one of the "
591
0
                         "keys “path” or “abstract” to be set"),
592
0
                       address_entry);
593
0
        }
594
0
      else if (path != NULL)
595
0
        {
596
0
          connectable = G_SOCKET_CONNECTABLE (g_unix_socket_address_new (path));
597
0
        }
598
0
      else if (abstract != NULL)
599
0
        {
600
0
          connectable = G_SOCKET_CONNECTABLE (g_unix_socket_address_new_with_type (abstract,
601
0
                                                                                   -1,
602
0
                                                                                   G_UNIX_SOCKET_ADDRESS_ABSTRACT));
603
0
        }
604
0
      else
605
0
        {
606
0
          g_assert_not_reached ();
607
0
        }
608
0
    }
609
0
  else if (g_strcmp0 (transport_name, "tcp") == 0 || g_strcmp0 (transport_name, "nonce-tcp") == 0)
610
0
    {
611
0
      const gchar *s;
612
0
      const gchar *host;
613
0
      glong port;
614
0
      gchar *endp;
615
0
      gboolean is_nonce;
616
617
0
      is_nonce = (g_strcmp0 (transport_name, "nonce-tcp") == 0);
618
619
0
      host = g_hash_table_lookup (key_value_pairs, "host");
620
0
      if (host == NULL)
621
0
        {
622
0
          g_set_error (error,
623
0
                       G_IO_ERROR,
624
0
                       G_IO_ERROR_INVALID_ARGUMENT,
625
0
                       _("Error in address “%s” — the host attribute is missing or malformed"),
626
0
                       address_entry);
627
0
          goto out;
628
0
        }
629
630
0
      s = g_hash_table_lookup (key_value_pairs, "port");
631
0
      if (s == NULL)
632
0
        s = "0";
633
0
      port = strtol (s, &endp, 10);
634
0
      if ((*s == '\0' || *endp != '\0') || port < 0 || port >= 65536)
635
0
        {
636
0
          g_set_error (error,
637
0
                       G_IO_ERROR,
638
0
                       G_IO_ERROR_INVALID_ARGUMENT,
639
0
                       _("Error in address “%s” — the port attribute is missing or malformed"),
640
0
                       address_entry);
641
0
          goto out;
642
0
        }
643
644
645
0
      if (is_nonce)
646
0
        {
647
0
          nonce_file = g_hash_table_lookup (key_value_pairs, "noncefile");
648
0
          if (nonce_file == NULL)
649
0
            {
650
0
              g_set_error (error,
651
0
                           G_IO_ERROR,
652
0
                           G_IO_ERROR_INVALID_ARGUMENT,
653
0
                           _("Error in address “%s” — the noncefile attribute is missing or malformed"),
654
0
                           address_entry);
655
0
              goto out;
656
0
            }
657
0
        }
658
659
      /* TODO: deal with family key/value-pair */
660
0
      connectable = g_network_address_new (host, port);
661
0
    }
662
0
  else if (g_strcmp0 (address_entry, "autolaunch:") == 0)
663
0
    {
664
0
      gchar *autolaunch_address;
665
0
      autolaunch_address = get_session_address_dbus_launch (error);
666
0
      if (autolaunch_address != NULL)
667
0
        {
668
0
          ret = g_dbus_address_try_connect_one (autolaunch_address, NULL, cancellable, error);
669
0
          g_free (autolaunch_address);
670
0
          goto out;
671
0
        }
672
0
      else
673
0
        {
674
0
          g_prefix_error (error, _("Error auto-launching: "));
675
0
        }
676
0
    }
677
0
  else
678
0
    {
679
0
      g_set_error (error,
680
0
                   G_IO_ERROR,
681
0
                   G_IO_ERROR_INVALID_ARGUMENT,
682
0
                   _("Unknown or unsupported transport “%s” for address “%s”"),
683
0
                   transport_name,
684
0
                   address_entry);
685
0
    }
686
687
0
  if (connectable != NULL)
688
0
    {
689
0
      GSocketClient *client;
690
0
      GSocketConnection *connection;
691
692
0
      g_assert (ret == NULL);
693
0
      client = g_socket_client_new ();
694
695
      /* Disable proxy support to prevent a deadlock on startup, since loading a
696
       * proxy resolver causes the GIO modules to be loaded, and there will
697
       * almost certainly be one of them which then tries to use GDBus.
698
       * See: https://bugzilla.gnome.org/show_bug.cgi?id=792499 */
699
0
      g_socket_client_set_enable_proxy (client, FALSE);
700
701
0
      connection = g_socket_client_connect (client,
702
0
                                            connectable,
703
0
                                            cancellable,
704
0
                                            error);
705
0
      g_object_unref (connectable);
706
0
      g_object_unref (client);
707
0
      if (connection == NULL)
708
0
        goto out;
709
710
0
      ret = G_IO_STREAM (connection);
711
712
0
      if (nonce_file != NULL)
713
0
        {
714
0
          gchar nonce_contents[16 + 1];
715
0
          size_t num_bytes_read;
716
0
          FILE *f;
717
0
          int errsv;
718
719
          /* be careful to read only 16 bytes - we also check that the file is only 16 bytes long */
720
0
          f = fopen (nonce_file, "rb");
721
0
          errsv = errno;
722
0
          if (f == NULL)
723
0
            {
724
0
              g_set_error (error,
725
0
                           G_IO_ERROR,
726
0
                           G_IO_ERROR_INVALID_ARGUMENT,
727
0
                           _("Error opening nonce file “%s”: %s"),
728
0
                           nonce_file,
729
0
                           g_strerror (errsv));
730
0
              g_object_unref (ret);
731
0
              ret = NULL;
732
0
              goto out;
733
0
            }
734
0
          num_bytes_read = fread (nonce_contents,
735
0
                                  sizeof (gchar),
736
0
                                  16 + 1,
737
0
                                  f);
738
0
          errsv = errno;
739
0
          if (num_bytes_read != 16)
740
0
            {
741
0
              if (num_bytes_read == 0)
742
0
                {
743
0
                  g_set_error (error,
744
0
                               G_IO_ERROR,
745
0
                               G_IO_ERROR_INVALID_ARGUMENT,
746
0
                               _("Error reading from nonce file “%s”: %s"),
747
0
                               nonce_file,
748
0
                               g_strerror (errsv));
749
0
                }
750
0
              else
751
0
                {
752
0
                  g_set_error (error,
753
0
                               G_IO_ERROR,
754
0
                               G_IO_ERROR_INVALID_ARGUMENT,
755
0
                               _("Error reading from nonce file “%s”, expected 16 bytes, got %d"),
756
0
                               nonce_file,
757
0
                               (gint) num_bytes_read);
758
0
                }
759
0
              g_object_unref (ret);
760
0
              ret = NULL;
761
0
              fclose (f);
762
0
              goto out;
763
0
            }
764
0
          fclose (f);
765
766
0
          if (!g_output_stream_write_all (g_io_stream_get_output_stream (ret),
767
0
                                          nonce_contents,
768
0
                                          16,
769
0
                                          NULL,
770
0
                                          cancellable,
771
0
                                          error))
772
0
            {
773
0
              g_prefix_error (error, _("Error writing contents of nonce file “%s” to stream:"), nonce_file);
774
0
              g_object_unref (ret);
775
0
              ret = NULL;
776
0
              goto out;
777
0
            }
778
0
        }
779
0
    }
780
781
0
 out:
782
783
0
  return ret;
784
0
}
785
786
static GIOStream *
787
g_dbus_address_try_connect_one (const gchar   *address_entry,
788
                                gchar        **out_guid,
789
                                GCancellable  *cancellable,
790
                                GError       **error)
791
0
{
792
0
  GIOStream *ret;
793
0
  GHashTable *key_value_pairs;
794
0
  gchar *transport_name;
795
0
  const gchar *guid;
796
797
0
  ret = NULL;
798
0
  transport_name = NULL;
799
0
  key_value_pairs = NULL;
800
801
0
  if (!_g_dbus_address_parse_entry (address_entry,
802
0
                                    &transport_name,
803
0
                                    &key_value_pairs,
804
0
                                    error))
805
0
    goto out;
806
807
0
  ret = g_dbus_address_connect (address_entry,
808
0
                                transport_name,
809
0
                                key_value_pairs,
810
0
                                cancellable,
811
0
                                error);
812
0
  if (ret == NULL)
813
0
    goto out;
814
815
0
  guid = g_hash_table_lookup (key_value_pairs, "guid");
816
0
  if (guid != NULL && out_guid != NULL)
817
0
    *out_guid = g_strdup (guid);
818
819
0
out:
820
0
  g_free (transport_name);
821
0
  if (key_value_pairs != NULL)
822
0
    g_hash_table_unref (key_value_pairs);
823
0
  return ret;
824
0
}
825
826
827
/* ---------------------------------------------------------------------------------------------------- */
828
829
typedef struct {
830
  gchar *address;
831
  gchar *guid;
832
} GetStreamData;
833
834
static void
835
get_stream_data_free (GetStreamData *data)
836
0
{
837
0
  g_free (data->address);
838
0
  g_free (data->guid);
839
0
  g_free (data);
840
0
}
841
842
static void
843
get_stream_thread_func (GTask         *task,
844
                        gpointer       source_object,
845
                        gpointer       task_data,
846
                        GCancellable  *cancellable)
847
0
{
848
0
  GetStreamData *data = task_data;
849
0
  GIOStream *stream;
850
0
  GError *error = NULL;
851
852
0
  stream = g_dbus_address_get_stream_sync (data->address,
853
0
                                           &data->guid,
854
0
                                           cancellable,
855
0
                                           &error);
856
0
  if (stream)
857
0
    g_task_return_pointer (task, stream, g_object_unref);
858
0
  else
859
0
    g_task_return_error (task, error);
860
0
}
861
862
/**
863
 * g_dbus_address_get_stream:
864
 * @address: A valid D-Bus address.
865
 * @cancellable: (nullable): A #GCancellable or %NULL.
866
 * @callback: A #GAsyncReadyCallback to call when the request is satisfied.
867
 * @user_data: Data to pass to @callback.
868
 *
869
 * Asynchronously connects to an endpoint specified by @address and
870
 * sets up the connection so it is in a state to run the client-side
871
 * of the D-Bus authentication conversation. @address must be in the
872
 * [D-Bus address format](https://dbus.freedesktop.org/doc/dbus-specification.html#addresses).
873
 *
874
 * When the operation is finished, @callback will be invoked. You can
875
 * then call g_dbus_address_get_stream_finish() to get the result of
876
 * the operation.
877
 *
878
 * This is an asynchronous failable function. See
879
 * g_dbus_address_get_stream_sync() for the synchronous version.
880
 *
881
 * Since: 2.26
882
 */
883
void
884
g_dbus_address_get_stream (const gchar         *address,
885
                           GCancellable        *cancellable,
886
                           GAsyncReadyCallback  callback,
887
                           gpointer             user_data)
888
0
{
889
0
  GTask *task;
890
0
  GetStreamData *data;
891
892
0
  g_return_if_fail (address != NULL);
893
894
0
  data = g_new0 (GetStreamData, 1);
895
0
  data->address = g_strdup (address);
896
897
0
  task = g_task_new (NULL, cancellable, callback, user_data);
898
0
  g_task_set_source_tag (task, g_dbus_address_get_stream);
899
0
  g_task_set_task_data (task, data, (GDestroyNotify) get_stream_data_free);
900
0
  g_task_run_in_thread (task, get_stream_thread_func);
901
0
  g_object_unref (task);
902
0
}
903
904
/**
905
 * g_dbus_address_get_stream_finish:
906
 * @res: A #GAsyncResult obtained from the GAsyncReadyCallback passed to g_dbus_address_get_stream().
907
 * @out_guid: (optional) (out) (nullable): %NULL or return location to store the GUID extracted from @address, if any.
908
 * @error: Return location for error or %NULL.
909
 *
910
 * Finishes an operation started with g_dbus_address_get_stream().
911
 *
912
 * A server is not required to set a GUID, so @out_guid may be set to %NULL
913
 * even on success.
914
 *
915
 * Returns: (transfer full): A #GIOStream or %NULL if @error is set.
916
 *
917
 * Since: 2.26
918
 */
919
GIOStream *
920
g_dbus_address_get_stream_finish (GAsyncResult        *res,
921
                                  gchar              **out_guid,
922
                                  GError             **error)
923
0
{
924
0
  GTask *task;
925
0
  GetStreamData *data;
926
0
  GIOStream *ret;
927
928
0
  g_return_val_if_fail (g_task_is_valid (res, NULL), NULL);
929
0
  g_return_val_if_fail (error == NULL || *error == NULL, NULL);
930
931
0
  task = G_TASK (res);
932
0
  ret = g_task_propagate_pointer (task, error);
933
934
0
  if (ret != NULL && out_guid != NULL)
935
0
    {
936
0
      data = g_task_get_task_data (task);
937
0
      *out_guid = data->guid;
938
0
      data->guid = NULL;
939
0
    }
940
941
0
  return ret;
942
0
}
943
944
/**
945
 * g_dbus_address_get_stream_sync:
946
 * @address: A valid D-Bus address.
947
 * @out_guid: (optional) (out) (nullable): %NULL or return location to store the GUID extracted from @address, if any.
948
 * @cancellable: (nullable): A #GCancellable or %NULL.
949
 * @error: Return location for error or %NULL.
950
 *
951
 * Synchronously connects to an endpoint specified by @address and
952
 * sets up the connection so it is in a state to run the client-side
953
 * of the D-Bus authentication conversation. @address must be in the
954
 * [D-Bus address format](https://dbus.freedesktop.org/doc/dbus-specification.html#addresses).
955
 *
956
 * A server is not required to set a GUID, so @out_guid may be set to %NULL
957
 * even on success.
958
 *
959
 * This is a synchronous failable function. See
960
 * g_dbus_address_get_stream() for the asynchronous version.
961
 *
962
 * Returns: (transfer full): A #GIOStream or %NULL if @error is set.
963
 *
964
 * Since: 2.26
965
 */
966
GIOStream *
967
g_dbus_address_get_stream_sync (const gchar   *address,
968
                                gchar        **out_guid,
969
                                GCancellable  *cancellable,
970
                                GError       **error)
971
0
{
972
0
  GIOStream *ret;
973
0
  gchar **addr_array;
974
0
  guint n;
975
0
  GError *last_error;
976
977
0
  g_return_val_if_fail (address != NULL, NULL);
978
0
  g_return_val_if_fail (error == NULL || *error == NULL, NULL);
979
980
0
  ret = NULL;
981
0
  last_error = NULL;
982
983
0
  addr_array = g_strsplit (address, ";", 0);
984
0
  if (addr_array[0] == NULL)
985
0
    {
986
0
      last_error = g_error_new_literal (G_IO_ERROR,
987
0
                                        G_IO_ERROR_INVALID_ARGUMENT,
988
0
                                        _("The given address is empty"));
989
0
      goto out;
990
0
    }
991
992
0
  for (n = 0; addr_array[n] != NULL; n++)
993
0
    {
994
0
      const gchar *addr = addr_array[n];
995
0
      GError *this_error;
996
997
0
      this_error = NULL;
998
0
      ret = g_dbus_address_try_connect_one (addr,
999
0
                                            out_guid,
1000
0
                                            cancellable,
1001
0
                                            &this_error);
1002
0
      if (ret != NULL)
1003
0
        {
1004
0
          goto out;
1005
0
        }
1006
0
      else
1007
0
        {
1008
0
          g_assert (this_error != NULL);
1009
0
          if (last_error != NULL)
1010
0
            g_error_free (last_error);
1011
0
          last_error = this_error;
1012
0
        }
1013
0
    }
1014
1015
0
 out:
1016
0
  if (ret != NULL)
1017
0
    {
1018
0
      if (last_error != NULL)
1019
0
        g_error_free (last_error);
1020
0
    }
1021
0
  else
1022
0
    {
1023
0
      g_assert (last_error != NULL);
1024
0
      g_propagate_error (error, last_error);
1025
0
    }
1026
1027
0
  g_strfreev (addr_array);
1028
0
  return ret;
1029
0
}
1030
1031
/* ---------------------------------------------------------------------------------------------------- */
1032
1033
/*
1034
 * Return the address of XDG_RUNTIME_DIR/bus if it exists, belongs to
1035
 * us, and is a socket, and we are on Unix.
1036
 */
1037
static gchar *
1038
get_session_address_xdg (void)
1039
0
{
1040
0
#ifdef G_OS_UNIX
1041
0
  gchar *ret = NULL;
1042
0
  gchar *bus;
1043
0
  gchar *tmp;
1044
0
  GStatBuf buf;
1045
1046
0
  bus = g_build_filename (g_get_user_runtime_dir (), "bus", NULL);
1047
1048
  /* if ENOENT, EPERM, etc., quietly don't use it */
1049
0
  if (g_stat (bus, &buf) < 0)
1050
0
    goto out;
1051
1052
  /* if it isn't ours, we have incorrectly inherited someone else's
1053
   * XDG_RUNTIME_DIR; silently don't use it
1054
   */
1055
0
  if (buf.st_uid != geteuid ())
1056
0
    goto out;
1057
1058
  /* if it isn't a socket, silently don't use it */
1059
0
  if ((buf.st_mode & S_IFMT) != S_IFSOCK)
1060
0
    goto out;
1061
1062
0
  tmp = g_dbus_address_escape_value (bus);
1063
0
  ret = g_strconcat ("unix:path=", tmp, NULL);
1064
0
  g_free (tmp);
1065
1066
0
out:
1067
0
  g_free (bus);
1068
0
  return ret;
1069
#else
1070
  return NULL;
1071
#endif
1072
0
}
1073
1074
/* ---------------------------------------------------------------------------------------------------- */
1075
1076
#ifdef G_OS_UNIX
1077
static gchar *
1078
get_session_address_dbus_launch (GError **error)
1079
0
{
1080
0
  gchar *ret;
1081
0
  gchar *machine_id;
1082
0
  gchar *command_line;
1083
0
  gchar *launch_stdout;
1084
0
  gchar *launch_stderr;
1085
0
  gint wait_status;
1086
0
  gchar *old_dbus_verbose;
1087
0
  gboolean restore_dbus_verbose;
1088
1089
0
  ret = NULL;
1090
0
  machine_id = NULL;
1091
0
  command_line = NULL;
1092
0
  launch_stdout = NULL;
1093
0
  launch_stderr = NULL;
1094
0
  restore_dbus_verbose = FALSE;
1095
0
  old_dbus_verbose = NULL;
1096
1097
  /* Don't run binaries as root if we're setuid. */
1098
0
  if (GLIB_PRIVATE_CALL (g_check_setuid) ())
1099
0
    {
1100
0
      g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
1101
0
                   _("Cannot spawn a message bus when AT_SECURE is set"));
1102
0
      goto out;
1103
0
    }
1104
1105
0
  machine_id = _g_dbus_get_machine_id (error);
1106
0
  if (machine_id == NULL)
1107
0
    {
1108
0
      g_prefix_error (error, _("Cannot spawn a message bus without a machine-id: "));
1109
0
      goto out;
1110
0
    }
1111
1112
0
  if (g_getenv ("DISPLAY") == NULL)
1113
0
    {
1114
0
      g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
1115
0
                   _("Cannot autolaunch D-Bus without X11 $DISPLAY"));
1116
0
      goto out;
1117
0
    }
1118
1119
  /* We're using private libdbus facilities here. When everything
1120
   * (X11, Mac OS X, Windows) is spec'ed out correctly (not even the
1121
   * X11 property is correctly documented right now) we should
1122
   * consider using the spec instead of dbus-launch.
1123
   *
1124
   *   --autolaunch=MACHINEID
1125
   *          This option implies that dbus-launch should scan  for  a  previ‐
1126
   *          ously-started  session  and  reuse the values found there. If no
1127
   *          session is found, it will start a new session. The  --exit-with-
1128
   *          session option is implied if --autolaunch is given.  This option
1129
   *          is for the exclusive use of libdbus, you do not want to  use  it
1130
   *          manually. It may change in the future.
1131
   */
1132
1133
  /* TODO: maybe provide a variable for where to look for the dbus-launch binary? */
1134
0
  command_line = g_strdup_printf ("dbus-launch --autolaunch=%s --binary-syntax --close-stderr", machine_id);
1135
1136
0
  if (G_UNLIKELY (_g_dbus_debug_address ()))
1137
0
    {
1138
0
      _g_dbus_debug_print_lock ();
1139
0
      g_print ("GDBus-debug:Address: Running '%s' to get bus address (possibly autolaunching)\n", command_line);
1140
0
      old_dbus_verbose = g_strdup (g_getenv ("DBUS_VERBOSE"));
1141
0
      restore_dbus_verbose = TRUE;
1142
0
      g_setenv ("DBUS_VERBOSE", "1", TRUE);
1143
0
      _g_dbus_debug_print_unlock ();
1144
0
    }
1145
1146
0
  if (!g_spawn_command_line_sync (command_line,
1147
0
                                  &launch_stdout,
1148
0
                                  &launch_stderr,
1149
0
                                  &wait_status,
1150
0
                                  error))
1151
0
    {
1152
0
      goto out;
1153
0
    }
1154
1155
0
  if (!g_spawn_check_wait_status (wait_status, error))
1156
0
    {
1157
0
      g_prefix_error (error, _("Error spawning command line “%s”: "), command_line);
1158
0
      goto out;
1159
0
    }
1160
1161
  /* From the dbus-launch(1) man page:
1162
   *
1163
   *   --binary-syntax Write to stdout a nul-terminated bus address,
1164
   *   then the bus PID as a binary integer of size sizeof(pid_t),
1165
   *   then the bus X window ID as a binary integer of size
1166
   *   sizeof(long).  Integers are in the machine's byte order, not
1167
   *   network byte order or any other canonical byte order.
1168
   */
1169
0
  ret = g_strdup (launch_stdout);
1170
1171
0
 out:
1172
0
  if (G_UNLIKELY (_g_dbus_debug_address ()))
1173
0
    {
1174
0
      gchar *s;
1175
0
      _g_dbus_debug_print_lock ();
1176
0
      g_print ("GDBus-debug:Address: dbus-launch output:");
1177
0
      if (launch_stdout != NULL)
1178
0
        {
1179
0
          s = _g_dbus_hexdump (launch_stdout, strlen (launch_stdout) + 1 + sizeof (pid_t) + sizeof (long), 2);
1180
0
          g_print ("\n%s", s);
1181
0
          g_free (s);
1182
0
        }
1183
0
      else
1184
0
        {
1185
0
          g_print (" (none)\n");
1186
0
        }
1187
0
      g_print ("GDBus-debug:Address: dbus-launch stderr output:");
1188
0
      if (launch_stderr != NULL)
1189
0
        g_print ("\n%s", launch_stderr);
1190
0
      else
1191
0
        g_print (" (none)\n");
1192
0
      _g_dbus_debug_print_unlock ();
1193
0
    }
1194
1195
0
  g_free (machine_id);
1196
0
  g_free (command_line);
1197
0
  g_free (launch_stdout);
1198
0
  g_free (launch_stderr);
1199
0
  if (G_UNLIKELY (restore_dbus_verbose))
1200
0
    {
1201
0
      if (old_dbus_verbose != NULL)
1202
0
        g_setenv ("DBUS_VERBOSE", old_dbus_verbose, TRUE);
1203
0
      else
1204
0
        g_unsetenv ("DBUS_VERBOSE");
1205
0
    }
1206
0
  g_free (old_dbus_verbose);
1207
0
  return ret;
1208
0
}
1209
1210
/* end of G_OS_UNIX case */
1211
#elif defined(G_OS_WIN32)
1212
1213
static gchar *
1214
get_session_address_dbus_launch (GError **error)
1215
{
1216
  return _g_dbus_win32_get_session_address_dbus_launch (error);
1217
}
1218
1219
#else /* neither G_OS_UNIX nor G_OS_WIN32 */
1220
static gchar *
1221
get_session_address_dbus_launch (GError **error)
1222
{
1223
  g_set_error (error,
1224
               G_IO_ERROR,
1225
               G_IO_ERROR_FAILED,
1226
               _("Cannot determine session bus address (not implemented for this OS)"));
1227
  return NULL;
1228
}
1229
#endif /* neither G_OS_UNIX nor G_OS_WIN32 */
1230
1231
/* ---------------------------------------------------------------------------------------------------- */
1232
1233
static gchar *
1234
get_session_address_platform_specific (GError **error)
1235
0
{
1236
0
  gchar *ret;
1237
1238
  /* Use XDG_RUNTIME_DIR/bus if it exists and is suitable. This is appropriate
1239
   * for systems using the "a session is a user-session" model described in
1240
   * <http://lists.freedesktop.org/archives/dbus/2015-January/016522.html>,
1241
   * and implemented in dbus >= 1.9.14 and sd-bus.
1242
   *
1243
   * On systems following the more traditional "a session is a login-session"
1244
   * model, this will fail and we'll fall through to X11 autolaunching
1245
   * (dbus-launch) below.
1246
   */
1247
0
  ret = get_session_address_xdg ();
1248
1249
0
  if (ret != NULL)
1250
0
    return ret;
1251
1252
  /* TODO (#694472): try launchd on OS X, like
1253
   * _dbus_lookup_session_address_launchd() does, since
1254
   * 'dbus-launch --autolaunch' probably won't work there
1255
   */
1256
1257
  /* As a last resort, try the "autolaunch:" transport. On Unix this means
1258
   * X11 autolaunching; on Windows this means a different autolaunching
1259
   * mechanism based on shared memory.
1260
   */
1261
0
  return get_session_address_dbus_launch (error);
1262
0
}
1263
1264
/* ---------------------------------------------------------------------------------------------------- */
1265
1266
/**
1267
 * g_dbus_address_get_for_bus_sync:
1268
 * @bus_type: a #GBusType
1269
 * @cancellable: (nullable): a #GCancellable or %NULL
1270
 * @error: return location for error or %NULL
1271
 *
1272
 * Synchronously looks up the D-Bus address for the well-known message
1273
 * bus instance specified by @bus_type. This may involve using various
1274
 * platform specific mechanisms.
1275
 *
1276
 * The returned address will be in the
1277
 * [D-Bus address format](https://dbus.freedesktop.org/doc/dbus-specification.html#addresses).
1278
 *
1279
 * Returns: (transfer full): a valid D-Bus address string for @bus_type or
1280
 *     %NULL if @error is set
1281
 *
1282
 * Since: 2.26
1283
 */
1284
gchar *
1285
g_dbus_address_get_for_bus_sync (GBusType       bus_type,
1286
                                 GCancellable  *cancellable,
1287
                                 GError       **error)
1288
0
{
1289
0
  gboolean has_elevated_privileges = GLIB_PRIVATE_CALL (g_check_setuid) ();
1290
0
  gchar *ret, *s = NULL;
1291
0
  const gchar *starter_bus;
1292
0
  GError *local_error;
1293
1294
0
  g_return_val_if_fail (error == NULL || *error == NULL, NULL);
1295
1296
0
  ret = NULL;
1297
0
  local_error = NULL;
1298
1299
0
  if (G_UNLIKELY (_g_dbus_debug_address ()))
1300
0
    {
1301
0
      guint n;
1302
0
      _g_dbus_debug_print_lock ();
1303
0
      s = _g_dbus_enum_to_string (G_TYPE_BUS_TYPE, bus_type);
1304
0
      g_print ("GDBus-debug:Address: In g_dbus_address_get_for_bus_sync() for bus type '%s'\n",
1305
0
               s);
1306
0
      g_free (s);
1307
0
      for (n = 0; n < 3; n++)
1308
0
        {
1309
0
          const gchar *k;
1310
0
          const gchar *v;
1311
0
          switch (n)
1312
0
            {
1313
0
            case 0: k = "DBUS_SESSION_BUS_ADDRESS"; break;
1314
0
            case 1: k = "DBUS_SYSTEM_BUS_ADDRESS"; break;
1315
0
            case 2: k = "DBUS_STARTER_BUS_TYPE"; break;
1316
0
            default: g_assert_not_reached ();
1317
0
            }
1318
0
          v = g_getenv (k);
1319
0
          g_print ("GDBus-debug:Address: env var %s", k);
1320
0
          if (v != NULL)
1321
0
            g_print ("='%s'\n", v);
1322
0
          else
1323
0
            g_print (" is not set\n");
1324
0
        }
1325
0
      _g_dbus_debug_print_unlock ();
1326
0
    }
1327
1328
  /* Don’t load the addresses from the environment if running as setuid, as they
1329
   * come from an unprivileged caller. */
1330
0
  switch (bus_type)
1331
0
    {
1332
0
    case G_BUS_TYPE_SYSTEM:
1333
0
      if (has_elevated_privileges)
1334
0
        ret = NULL;
1335
0
      else
1336
0
        ret = g_strdup (g_getenv ("DBUS_SYSTEM_BUS_ADDRESS"));
1337
1338
0
      if (ret == NULL)
1339
0
        {
1340
0
          ret = g_strdup ("unix:path=/var/run/dbus/system_bus_socket");
1341
0
        }
1342
0
      break;
1343
1344
0
    case G_BUS_TYPE_SESSION:
1345
0
      if (has_elevated_privileges)
1346
0
        ret = NULL;
1347
0
      else
1348
0
        ret = g_strdup (g_getenv ("DBUS_SESSION_BUS_ADDRESS"));
1349
1350
0
      if (ret == NULL)
1351
0
        {
1352
0
          ret = get_session_address_platform_specific (&local_error);
1353
0
        }
1354
0
      break;
1355
1356
0
    case G_BUS_TYPE_STARTER:
1357
0
      starter_bus = g_getenv ("DBUS_STARTER_BUS_TYPE");
1358
0
      if (g_strcmp0 (starter_bus, "session") == 0)
1359
0
        {
1360
0
          ret = g_dbus_address_get_for_bus_sync (G_BUS_TYPE_SESSION, cancellable, &local_error);
1361
0
          goto out;
1362
0
        }
1363
0
      else if (g_strcmp0 (starter_bus, "system") == 0)
1364
0
        {
1365
0
          ret = g_dbus_address_get_for_bus_sync (G_BUS_TYPE_SYSTEM, cancellable, &local_error);
1366
0
          goto out;
1367
0
        }
1368
0
      else
1369
0
        {
1370
0
          if (starter_bus != NULL)
1371
0
            {
1372
0
              g_set_error (&local_error,
1373
0
                           G_IO_ERROR,
1374
0
                           G_IO_ERROR_FAILED,
1375
0
                           _("Cannot determine bus address from DBUS_STARTER_BUS_TYPE environment variable"
1376
0
                             " — unknown value “%s”"),
1377
0
                           starter_bus);
1378
0
            }
1379
0
          else
1380
0
            {
1381
0
              g_set_error_literal (&local_error,
1382
0
                                   G_IO_ERROR,
1383
0
                                   G_IO_ERROR_FAILED,
1384
0
                                   _("Cannot determine bus address because the DBUS_STARTER_BUS_TYPE environment "
1385
0
                                     "variable is not set"));
1386
0
            }
1387
0
        }
1388
0
      break;
1389
1390
0
    default:
1391
0
      g_set_error (&local_error,
1392
0
                   G_IO_ERROR,
1393
0
                   G_IO_ERROR_FAILED,
1394
0
                   _("Unknown bus type %d"),
1395
0
                   bus_type);
1396
0
      break;
1397
0
    }
1398
1399
0
 out:
1400
0
  if (G_UNLIKELY (_g_dbus_debug_address ()))
1401
0
    {
1402
0
      _g_dbus_debug_print_lock ();
1403
0
      s = _g_dbus_enum_to_string (G_TYPE_BUS_TYPE, bus_type);
1404
0
      if (ret != NULL)
1405
0
        {
1406
0
          g_print ("GDBus-debug:Address: Returning address '%s' for bus type '%s'\n",
1407
0
                   ret, s);
1408
0
        }
1409
0
      else
1410
0
        {
1411
0
          g_print ("GDBus-debug:Address: Cannot look-up address bus type '%s': %s\n",
1412
0
                   s, local_error ? local_error->message : "");
1413
0
        }
1414
0
      g_free (s);
1415
0
      _g_dbus_debug_print_unlock ();
1416
0
    }
1417
1418
0
  if (local_error != NULL)
1419
0
    g_propagate_error (error, local_error);
1420
1421
0
  return ret;
1422
0
}
1423
1424
/**
1425
 * g_dbus_address_escape_value:
1426
 * @string: an unescaped string to be included in a D-Bus address
1427
 *     as the value in a key-value pair
1428
 *
1429
 * Escape @string so it can appear in a D-Bus address as the value
1430
 * part of a key-value pair.
1431
 *
1432
 * For instance, if @string is `/run/bus-for-:0`,
1433
 * this function would return `/run/bus-for-%3A0`,
1434
 * which could be used in a D-Bus address like
1435
 * `unix:nonce-tcp:host=127.0.0.1,port=42,noncefile=/run/bus-for-%3A0`.
1436
 *
1437
 * Returns: (transfer full): a copy of @string with all
1438
 *     non-optionally-escaped bytes escaped
1439
 *
1440
 * Since: 2.36
1441
 */
1442
gchar *
1443
g_dbus_address_escape_value (const gchar *string)
1444
0
{
1445
0
  GString *s;
1446
0
  gsize i;
1447
1448
0
  g_return_val_if_fail (string != NULL, NULL);
1449
1450
  /* There will often not be anything needing escaping at all. */
1451
0
  s = g_string_sized_new (strlen (string));
1452
1453
  /* D-Bus address escaping is mostly the same as URI escaping... */
1454
0
  g_string_append_uri_escaped (s, string, "\\/", FALSE);
1455
1456
  /* ... but '~' is an unreserved character in URIs, but a
1457
   * non-optionally-escaped character in D-Bus addresses. */
1458
0
  for (i = 0; i < s->len; i++)
1459
0
    {
1460
0
      if (G_UNLIKELY (s->str[i] == '~'))
1461
0
        {
1462
0
          s->str[i] = '%';
1463
0
          g_string_insert (s, i + 1, "7E");
1464
0
          i += 2;
1465
0
        }
1466
0
    }
1467
1468
0
  return g_string_free (s, FALSE);
1469
0
}