Added g_kdbus_send_message() function call to gdbusprivate.c
[platform/upstream/glib.git] / gio / gdbusprivate.c
1 /* GDBus - GLib D-Bus Library
2  *
3  * Copyright (C) 2008-2010 Red Hat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General
16  * Public License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18  * Boston, MA 02111-1307, USA.
19  *
20  * Author: David Zeuthen <davidz@redhat.com>
21  */
22
23 #include "config.h"
24
25 #include <stdlib.h>
26 #include <string.h>
27 #ifdef HAVE_UNISTD_H
28 #include <unistd.h>
29 #endif
30
31 #include "giotypes.h"
32 #include "gsocket.h"
33 #include "gdbusprivate.h"
34 #include "gdbusmessage.h"
35 #include "gdbuserror.h"
36 #include "gdbusintrospection.h"
37 #include "gasyncresult.h"
38 #include "gsimpleasyncresult.h"
39 #include "ginputstream.h"
40 #include "gmemoryinputstream.h"
41 #include "giostream.h"
42 #include "glib/gstdio.h"
43 #include "gsocketcontrolmessage.h"
44 #include "gsocketconnection.h"
45 #include "gkdbusconnection.h"
46 #include "gsocketoutputstream.h"
47
48 #ifdef G_OS_UNIX
49 #include "gunixfdmessage.h"
50 #include "gunixconnection.h"
51 #include "gunixcredentialsmessage.h"
52 #endif
53
54 #ifdef G_OS_WIN32
55 #include <windows.h>
56 #endif
57
58 #include "glibintl.h"
59
60 static gboolean _g_dbus_worker_do_initial_read (gpointer data);
61
62 /* ---------------------------------------------------------------------------------------------------- */
63
64 gchar *
65 _g_dbus_hexdump (const gchar *data, gsize len, guint indent)
66 {
67  guint n, m;
68  GString *ret;
69
70  ret = g_string_new (NULL);
71
72  for (n = 0; n < len; n += 16)
73    {
74      g_string_append_printf (ret, "%*s%04x: ", indent, "", n);
75
76      for (m = n; m < n + 16; m++)
77        {
78          if (m > n && (m%4) == 0)
79            g_string_append_c (ret, ' ');
80          if (m < len)
81            g_string_append_printf (ret, "%02x ", (guchar) data[m]);
82          else
83            g_string_append (ret, "   ");
84        }
85
86      g_string_append (ret, "   ");
87
88      for (m = n; m < len && m < n + 16; m++)
89        g_string_append_c (ret, g_ascii_isprint (data[m]) ? data[m] : '.');
90
91      g_string_append_c (ret, '\n');
92    }
93
94  return g_string_free (ret, FALSE);
95 }
96
97 /* ---------------------------------------------------------------------------------------------------- */
98
99 /* Unfortunately ancillary messages are discarded when reading from a
100  * socket using the GSocketInputStream abstraction. So we provide a
101  * very GInputStream-ish API that uses GSocket in this case (very
102  * similar to GSocketInputStream).
103  */
104
105 typedef struct
106 {
107   GSocket *socket;
108   GCancellable *cancellable;
109
110   void *buffer;
111   gsize count;
112
113   GSocketControlMessage ***messages;
114   gint *num_messages;
115
116   GSimpleAsyncResult *simple;
117
118   gboolean from_mainloop;
119 } ReadWithControlData;
120
121 static void
122 read_with_control_data_free (ReadWithControlData *data)
123 {
124   g_object_unref (data->socket);
125   if (data->cancellable != NULL)
126     g_object_unref (data->cancellable);
127   g_object_unref (data->simple);
128   g_free (data);
129 }
130
131 static gboolean
132 _g_socket_read_with_control_messages_ready (GSocket      *socket,
133                                             GIOCondition  condition,
134                                             gpointer      user_data)
135 {
136   ReadWithControlData *data = user_data;
137   GError *error;
138   gssize result;
139   GInputVector vector;
140
141   error = NULL;
142   vector.buffer = data->buffer;
143   vector.size = data->count;
144   result = g_socket_receive_message (data->socket,
145                                      NULL, /* address */
146                                      &vector,
147                                      1,
148                                      data->messages,
149                                      data->num_messages,
150                                      NULL,
151                                      data->cancellable,
152                                      &error);
153   if (result >= 0)
154     {
155       g_simple_async_result_set_op_res_gssize (data->simple, result);
156     }
157   else
158     {
159       g_assert (error != NULL);
160       g_simple_async_result_take_error (data->simple, error);
161     }
162
163   if (data->from_mainloop)
164     g_simple_async_result_complete (data->simple);
165   else
166     g_simple_async_result_complete_in_idle (data->simple);
167
168   return FALSE;
169 }
170
171 static void
172 _g_socket_read_with_control_messages (GSocket                 *socket,
173                                       void                    *buffer,
174                                       gsize                    count,
175                                       GSocketControlMessage ***messages,
176                                       gint                    *num_messages,
177                                       gint                     io_priority,
178                                       GCancellable            *cancellable,
179                                       GAsyncReadyCallback      callback,
180                                       gpointer                 user_data)
181 {
182   ReadWithControlData *data;
183
184   data = g_new0 (ReadWithControlData, 1);
185   data->socket = g_object_ref (socket);
186   data->cancellable = cancellable != NULL ? g_object_ref (cancellable) : NULL;
187   data->buffer = buffer;
188   data->count = count;
189   data->messages = messages;
190   data->num_messages = num_messages;
191
192   data->simple = g_simple_async_result_new (G_OBJECT (socket),
193                                             callback,
194                                             user_data,
195                                             _g_socket_read_with_control_messages);
196   g_simple_async_result_set_check_cancellable (data->simple, cancellable);
197
198   if (!g_socket_condition_check (socket, G_IO_IN))
199     {
200       GSource *source;
201       data->from_mainloop = TRUE;
202       source = g_socket_create_source (data->socket,
203                                        G_IO_IN | G_IO_HUP | G_IO_ERR,
204                                        cancellable);
205       g_source_set_callback (source,
206                              (GSourceFunc) _g_socket_read_with_control_messages_ready,
207                              data,
208                              (GDestroyNotify) read_with_control_data_free);
209       g_source_attach (source, g_main_context_get_thread_default ());
210       g_source_unref (source);
211     }
212   else
213     {
214       _g_socket_read_with_control_messages_ready (data->socket, G_IO_IN, data);
215       read_with_control_data_free (data);
216     }
217 }
218
219 static gssize
220 _g_socket_read_with_control_messages_finish (GSocket       *socket,
221                                              GAsyncResult  *result,
222                                              GError       **error)
223 {
224   GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
225
226   g_return_val_if_fail (G_IS_SOCKET (socket), -1);
227   g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == _g_socket_read_with_control_messages);
228
229   if (g_simple_async_result_propagate_error (simple, error))
230       return -1;
231   else
232     return g_simple_async_result_get_op_res_gssize (simple);
233 }
234
235 /* ---------------------------------------------------------------------------------------------------- */
236
237 /* Work-around for https://bugzilla.gnome.org/show_bug.cgi?id=627724 */
238
239 static GPtrArray *ensured_classes = NULL;
240
241 static void
242 ensure_type (GType gtype)
243 {
244   g_ptr_array_add (ensured_classes, g_type_class_ref (gtype));
245 }
246
247 static void
248 release_required_types (void)
249 {
250   g_ptr_array_foreach (ensured_classes, (GFunc) g_type_class_unref, NULL);
251   g_ptr_array_unref (ensured_classes);
252   ensured_classes = NULL;
253 }
254
255 static void
256 ensure_required_types (void)
257 {
258   g_assert (ensured_classes == NULL);
259   ensured_classes = g_ptr_array_new ();
260   ensure_type (G_TYPE_SIMPLE_ASYNC_RESULT);
261   ensure_type (G_TYPE_MEMORY_INPUT_STREAM);
262 }
263 /* ---------------------------------------------------------------------------------------------------- */
264
265 typedef struct
266 {
267   volatile gint refcount;
268   GThread *thread;
269   GMainContext *context;
270   GMainLoop *loop;
271 } SharedThreadData;
272
273 static gpointer
274 gdbus_shared_thread_func (gpointer user_data)
275 {
276   SharedThreadData *data = user_data;
277
278   g_main_context_push_thread_default (data->context);
279   g_main_loop_run (data->loop);
280   g_main_context_pop_thread_default (data->context);
281
282   release_required_types ();
283
284   return NULL;
285 }
286
287 /* ---------------------------------------------------------------------------------------------------- */
288
289 static SharedThreadData *
290 _g_dbus_shared_thread_ref (void)
291 {
292   static gsize shared_thread_data = 0;
293   SharedThreadData *ret;
294
295   if (g_once_init_enter (&shared_thread_data))
296     {
297       SharedThreadData *data;
298
299       /* Work-around for https://bugzilla.gnome.org/show_bug.cgi?id=627724 */
300       ensure_required_types ();
301
302       data = g_new0 (SharedThreadData, 1);
303       data->refcount = 0;
304       
305       data->context = g_main_context_new ();
306       data->loop = g_main_loop_new (data->context, FALSE);
307       data->thread = g_thread_new ("gdbus",
308                                    gdbus_shared_thread_func,
309                                    data);
310       /* We can cast between gsize and gpointer safely */
311       g_once_init_leave (&shared_thread_data, (gsize) data);
312     }
313
314   ret = (SharedThreadData*) shared_thread_data;
315   g_atomic_int_inc (&ret->refcount);
316   return ret;
317 }
318
319 static void
320 _g_dbus_shared_thread_unref (SharedThreadData *data)
321 {
322   /* TODO: actually destroy the shared thread here */
323 #if 0
324   g_assert (data != NULL);
325   if (g_atomic_int_dec_and_test (&data->refcount))
326     {
327       g_main_loop_quit (data->loop);
328       //g_thread_join (data->thread);
329       g_main_loop_unref (data->loop);
330       g_main_context_unref (data->context);
331     }
332 #endif
333 }
334
335 /* ---------------------------------------------------------------------------------------------------- */
336
337 typedef enum {
338     PENDING_NONE = 0,
339     PENDING_WRITE,
340     PENDING_FLUSH,
341     PENDING_CLOSE
342 } OutputPending;
343
344 struct GDBusWorker
345 {
346   volatile gint                       ref_count;
347
348   SharedThreadData                   *shared_thread_data;
349
350   /* really a boolean, but GLib 2.28 lacks atomic boolean ops */
351   volatile gint                       stopped;
352
353   /* TODO: frozen (e.g. G_DBUS_CONNECTION_FLAGS_DELAY_MESSAGE_PROCESSING) currently
354    * only affects messages received from the other peer (since GDBusServer is the
355    * only user) - we might want it to affect messages sent to the other peer too?
356    */
357   gboolean                            frozen;
358   GDBusCapabilityFlags                capabilities;
359   GQueue                             *received_messages_while_frozen;
360
361   GIOStream                          *stream;
362   GCancellable                       *cancellable;
363   GDBusWorkerMessageReceivedCallback  message_received_callback;
364   GDBusWorkerMessageAboutToBeSentCallback message_about_to_be_sent_callback;
365   GDBusWorkerDisconnectedCallback     disconnected_callback;
366   gpointer                            user_data;
367
368   /* if GSocket and GKdbus are NULL, stream is GSocketConnection */
369   GSocket *socket;
370   GKdbus  *kdbus;
371
372   /* used for reading */
373   GMutex                              read_lock;
374   gchar                              *read_buffer;
375   gsize                               read_buffer_allocated_size;
376   gsize                               read_buffer_cur_size;
377   gsize                               read_buffer_bytes_wanted;
378   GUnixFDList                        *read_fd_list;
379   GSocketControlMessage             **read_ancillary_messages;
380   gint                                read_num_ancillary_messages;
381
382   /* Whether an async write, flush or close, or none of those, is pending.
383    * Only the worker thread may change its value, and only with the write_lock.
384    * Other threads may read its value when holding the write_lock.
385    * The worker thread may read its value at any time.
386    */
387   OutputPending                       output_pending;
388   /* used for writing */
389   GMutex                              write_lock;
390   /* queue of MessageToWriteData, protected by write_lock */
391   GQueue                             *write_queue;
392   /* protected by write_lock */
393   guint64                             write_num_messages_written;
394   /* number of messages we'd written out last time we flushed;
395    * protected by write_lock
396    */
397   guint64                             write_num_messages_flushed;
398   /* list of FlushData, protected by write_lock */
399   GList                              *write_pending_flushes;
400   /* list of CloseData, protected by write_lock */
401   GList                              *pending_close_attempts;
402   /* no lock - only used from the worker thread */
403   gboolean                            close_expected;
404 };
405
406 static void _g_dbus_worker_unref (GDBusWorker *worker);
407
408 /* ---------------------------------------------------------------------------------------------------- */
409
410 typedef struct
411 {
412   GMutex  mutex;
413   GCond   cond;
414   guint64 number_to_wait_for;
415   GError *error;
416 } FlushData;
417
418 struct _MessageToWriteData ;
419 typedef struct _MessageToWriteData MessageToWriteData;
420
421 static void message_to_write_data_free (MessageToWriteData *data);
422
423 static void read_message_print_transport_debug (gssize bytes_read,
424                                                 GDBusWorker *worker);
425
426 static void write_message_print_transport_debug (gssize bytes_written,
427                                                  MessageToWriteData *data);
428
429 typedef struct {
430     GDBusWorker *worker;
431     GCancellable *cancellable;
432     GSimpleAsyncResult *result;
433 } CloseData;
434
435 static void close_data_free (CloseData *close_data)
436 {
437   if (close_data->cancellable != NULL)
438     g_object_unref (close_data->cancellable);
439
440   if (close_data->result != NULL)
441     g_object_unref (close_data->result);
442
443   _g_dbus_worker_unref (close_data->worker);
444   g_slice_free (CloseData, close_data);
445 }
446
447 /* ---------------------------------------------------------------------------------------------------- */
448
449 static GDBusWorker *
450 _g_dbus_worker_ref (GDBusWorker *worker)
451 {
452   g_atomic_int_inc (&worker->ref_count);
453   return worker;
454 }
455
456 static void
457 _g_dbus_worker_unref (GDBusWorker *worker)
458 {
459   if (g_atomic_int_dec_and_test (&worker->ref_count))
460     {
461       g_assert (worker->write_pending_flushes == NULL);
462
463       _g_dbus_shared_thread_unref (worker->shared_thread_data);
464
465       g_object_unref (worker->stream);
466
467       g_mutex_clear (&worker->read_lock);
468       g_object_unref (worker->cancellable);
469       if (worker->read_fd_list != NULL)
470         g_object_unref (worker->read_fd_list);
471
472       g_queue_free_full (worker->received_messages_while_frozen, (GDestroyNotify) g_object_unref);
473       g_mutex_clear (&worker->write_lock);
474       g_queue_free_full (worker->write_queue, (GDestroyNotify) message_to_write_data_free);
475       g_free (worker->read_buffer);
476
477       g_free (worker);
478     }
479 }
480
481 static void
482 _g_dbus_worker_emit_disconnected (GDBusWorker  *worker,
483                                   gboolean      remote_peer_vanished,
484                                   GError       *error)
485 {
486   if (!g_atomic_int_get (&worker->stopped))
487     worker->disconnected_callback (worker, remote_peer_vanished, error, worker->user_data);
488 }
489
490 static void
491 _g_dbus_worker_emit_message_received (GDBusWorker  *worker,
492                                       GDBusMessage *message)
493 {
494   if (!g_atomic_int_get (&worker->stopped))
495     worker->message_received_callback (worker, message, worker->user_data);
496 }
497
498 static GDBusMessage *
499 _g_dbus_worker_emit_message_about_to_be_sent (GDBusWorker  *worker,
500                                               GDBusMessage *message)
501 {
502   GDBusMessage *ret;
503   if (!g_atomic_int_get (&worker->stopped))
504     ret = worker->message_about_to_be_sent_callback (worker, message, worker->user_data);
505   else
506     ret = message;
507   return ret;
508 }
509
510 /* can only be called from private thread with read-lock held - takes ownership of @message */
511 static void
512 _g_dbus_worker_queue_or_deliver_received_message (GDBusWorker  *worker,
513                                                   GDBusMessage *message)
514 {
515   if (worker->frozen || g_queue_get_length (worker->received_messages_while_frozen) > 0)
516     {
517       /* queue up */
518       g_queue_push_tail (worker->received_messages_while_frozen, message);
519     }
520   else
521     {
522       /* not frozen, nor anything in queue */
523       _g_dbus_worker_emit_message_received (worker, message);
524       g_object_unref (message);
525     }
526 }
527
528 /* called in private thread shared by all GDBusConnection instances (without read-lock held) */
529 static gboolean
530 unfreeze_in_idle_cb (gpointer user_data)
531 {
532   GDBusWorker *worker = user_data;
533   GDBusMessage *message;
534
535   g_mutex_lock (&worker->read_lock);
536   if (worker->frozen)
537     {
538       while ((message = g_queue_pop_head (worker->received_messages_while_frozen)) != NULL)
539         {
540           _g_dbus_worker_emit_message_received (worker, message);
541           g_object_unref (message);
542         }
543       worker->frozen = FALSE;
544     }
545   else
546     {
547       g_assert (g_queue_get_length (worker->received_messages_while_frozen) == 0);
548     }
549   g_mutex_unlock (&worker->read_lock);
550   return FALSE;
551 }
552
553 /* can be called from any thread */
554 void
555 _g_dbus_worker_unfreeze (GDBusWorker *worker)
556 {
557   GSource *idle_source;
558   idle_source = g_idle_source_new ();
559   g_source_set_priority (idle_source, G_PRIORITY_DEFAULT);
560   g_source_set_callback (idle_source,
561                          unfreeze_in_idle_cb,
562                          _g_dbus_worker_ref (worker),
563                          (GDestroyNotify) _g_dbus_worker_unref);
564   g_source_attach (idle_source, worker->shared_thread_data->context);
565   g_source_unref (idle_source);
566 }
567
568 /* ---------------------------------------------------------------------------------------------------- */
569
570 static void _g_dbus_worker_do_read_unlocked (GDBusWorker *worker);
571
572 /* called in private thread shared by all GDBusConnection instances (without read-lock held) */
573 static void
574 _g_dbus_worker_do_read_cb (GInputStream  *input_stream,
575                            GAsyncResult  *res,
576                            gpointer       user_data)
577 {
578   GDBusWorker *worker = user_data;
579   GError *error;
580   gssize bytes_read;
581
582   g_mutex_lock (&worker->read_lock);
583
584   /* If already stopped, don't even process the reply */
585   if (g_atomic_int_get (&worker->stopped))
586     goto out;
587
588   error = NULL;
589   if (worker->socket == NULL)
590     bytes_read = g_input_stream_read_finish (g_io_stream_get_input_stream (worker->stream),
591                                              res,
592                                              &error);
593   else
594     bytes_read = _g_socket_read_with_control_messages_finish (worker->socket,
595                                                               res,
596                                                               &error);
597   if (worker->read_num_ancillary_messages > 0)
598     {
599       gint n;
600       for (n = 0; n < worker->read_num_ancillary_messages; n++)
601         {
602           GSocketControlMessage *control_message = G_SOCKET_CONTROL_MESSAGE (worker->read_ancillary_messages[n]);
603
604           if (FALSE)
605             {
606             }
607 #ifdef G_OS_UNIX
608           else if (G_IS_UNIX_FD_MESSAGE (control_message))
609             {
610               GUnixFDMessage *fd_message;
611               gint *fds;
612               gint num_fds;
613
614               fd_message = G_UNIX_FD_MESSAGE (control_message);
615               fds = g_unix_fd_message_steal_fds (fd_message, &num_fds);
616               if (worker->read_fd_list == NULL)
617                 {
618                   worker->read_fd_list = g_unix_fd_list_new_from_array (fds, num_fds);
619                 }
620               else
621                 {
622                   gint n;
623                   for (n = 0; n < num_fds; n++)
624                     {
625                       /* TODO: really want a append_steal() */
626                       g_unix_fd_list_append (worker->read_fd_list, fds[n], NULL);
627                       (void) g_close (fds[n], NULL);
628                     }
629                 }
630               g_free (fds);
631             }
632           else if (G_IS_UNIX_CREDENTIALS_MESSAGE (control_message))
633             {
634               /* do nothing */
635             }
636 #endif
637           else
638             {
639               if (error == NULL)
640                 {
641                   g_set_error (&error,
642                                G_IO_ERROR,
643                                G_IO_ERROR_FAILED,
644                                "Unexpected ancillary message of type %s received from peer",
645                                g_type_name (G_TYPE_FROM_INSTANCE (control_message)));
646                   _g_dbus_worker_emit_disconnected (worker, TRUE, error);
647                   g_error_free (error);
648                   g_object_unref (control_message);
649                   n++;
650                   while (n < worker->read_num_ancillary_messages)
651                     g_object_unref (worker->read_ancillary_messages[n++]);
652                   g_free (worker->read_ancillary_messages);
653                   goto out;
654                 }
655             }
656           g_object_unref (control_message);
657         }
658       g_free (worker->read_ancillary_messages);
659     }
660
661   if (bytes_read == -1)
662     {
663       if (G_UNLIKELY (_g_dbus_debug_transport ()))
664         {
665           _g_dbus_debug_print_lock ();
666           g_print ("========================================================================\n"
667                    "GDBus-debug:Transport:\n"
668                    "  ---- READ ERROR on stream of type %s:\n"
669                    "  ---- %s %d: %s\n",
670                    g_type_name (G_TYPE_FROM_INSTANCE (g_io_stream_get_input_stream (worker->stream))),
671                    g_quark_to_string (error->domain), error->code,
672                    error->message);
673           _g_dbus_debug_print_unlock ();
674         }
675
676       /* Every async read that uses this callback uses worker->cancellable
677        * as its GCancellable. worker->cancellable gets cancelled if and only
678        * if the GDBusConnection tells us to close (either via
679        * _g_dbus_worker_stop, which is called on last-unref, or directly),
680        * so a cancelled read must mean our connection was closed locally.
681        *
682        * If we're closing, other errors are possible - notably,
683        * G_IO_ERROR_CLOSED can be seen if we close the stream with an async
684        * read in-flight. It seems sensible to treat all read errors during
685        * closing as an expected thing that doesn't trip exit-on-close.
686        *
687        * Because close_expected can't be set until we get into the worker
688        * thread, but the cancellable is signalled sooner (from another
689        * thread), we do still need to check the error.
690        */
691       if (worker->close_expected ||
692           g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED))
693         _g_dbus_worker_emit_disconnected (worker, FALSE, NULL);
694       else
695         _g_dbus_worker_emit_disconnected (worker, TRUE, error);
696
697       g_error_free (error);
698       goto out;
699     }
700
701 #if 0
702   g_debug ("read %d bytes (is_closed=%d blocking=%d condition=0x%02x) stream %p, %p",
703            (gint) bytes_read,
704            g_socket_is_closed (g_socket_connection_get_socket (G_SOCKET_CONNECTION (worker->stream))),
705            g_socket_get_blocking (g_socket_connection_get_socket (G_SOCKET_CONNECTION (worker->stream))),
706            g_socket_condition_check (g_socket_connection_get_socket (G_SOCKET_CONNECTION (worker->stream)),
707                                      G_IO_IN | G_IO_OUT | G_IO_HUP),
708            worker->stream,
709            worker);
710 #endif
711
712   /* TODO: hmm, hmm... */
713   if (bytes_read == 0)
714     {
715       g_set_error (&error,
716                    G_IO_ERROR,
717                    G_IO_ERROR_FAILED,
718                    "Underlying GIOStream returned 0 bytes on an async read");
719       _g_dbus_worker_emit_disconnected (worker, TRUE, error);
720       g_error_free (error);
721       goto out;
722     }
723
724   read_message_print_transport_debug (bytes_read, worker);
725
726   worker->read_buffer_cur_size += bytes_read;
727   if (worker->read_buffer_bytes_wanted == worker->read_buffer_cur_size)
728     {
729       /* OK, got what we asked for! */
730       if (worker->read_buffer_bytes_wanted == 16)
731         {
732           gssize message_len;
733           /* OK, got the header - determine how many more bytes are needed */
734           error = NULL;
735           message_len = g_dbus_message_bytes_needed ((guchar *) worker->read_buffer,
736                                                      16,
737                                                      &error);
738           if (message_len == -1)
739             {
740               g_warning ("_g_dbus_worker_do_read_cb: error determining bytes needed: %s", error->message);
741               _g_dbus_worker_emit_disconnected (worker, FALSE, error);
742               g_error_free (error);
743               goto out;
744             }
745
746           worker->read_buffer_bytes_wanted = message_len;
747           _g_dbus_worker_do_read_unlocked (worker);
748         }
749       else
750         {
751           GDBusMessage *message;
752           error = NULL;
753
754           /* TODO: use connection->priv->auth to decode the message */
755
756           message = g_dbus_message_new_from_blob ((guchar *) worker->read_buffer,
757                                                   worker->read_buffer_cur_size,
758                                                   worker->capabilities,
759                                                   &error);
760           if (message == NULL)
761             {
762               gchar *s;
763               s = _g_dbus_hexdump (worker->read_buffer, worker->read_buffer_cur_size, 2);
764               g_warning ("Error decoding D-Bus message of %" G_GSIZE_FORMAT " bytes\n"
765                          "The error is: %s\n"
766                          "The payload is as follows:\n"
767                          "%s\n",
768                          worker->read_buffer_cur_size,
769                          error->message,
770                          s);
771               g_free (s);
772               _g_dbus_worker_emit_disconnected (worker, FALSE, error);
773               g_error_free (error);
774               goto out;
775             }
776
777 #ifdef G_OS_UNIX
778           if (worker->read_fd_list != NULL)
779             {
780               g_dbus_message_set_unix_fd_list (message, worker->read_fd_list);
781               g_object_unref (worker->read_fd_list);
782               worker->read_fd_list = NULL;
783             }
784 #endif
785
786           if (G_UNLIKELY (_g_dbus_debug_message ()))
787             {
788               gchar *s;
789               _g_dbus_debug_print_lock ();
790               g_print ("========================================================================\n"
791                        "GDBus-debug:Message:\n"
792                        "  <<<< RECEIVED D-Bus message (%" G_GSIZE_FORMAT " bytes)\n",
793                        worker->read_buffer_cur_size);
794               s = g_dbus_message_print (message, 2);
795               g_print ("%s", s);
796               g_free (s);
797               if (G_UNLIKELY (_g_dbus_debug_payload ()))
798                 {
799                   s = _g_dbus_hexdump (worker->read_buffer, worker->read_buffer_cur_size, 2);
800                   g_print ("%s\n", s);
801                   g_free (s);
802                 }
803               _g_dbus_debug_print_unlock ();
804             }
805
806           /* yay, got a message, go deliver it */
807           _g_dbus_worker_queue_or_deliver_received_message (worker, message);
808
809           /* start reading another message! */
810           worker->read_buffer_bytes_wanted = 0;
811           worker->read_buffer_cur_size = 0;
812           _g_dbus_worker_do_read_unlocked (worker);
813         }
814     }
815   else
816     {
817       /* didn't get all the bytes we requested - so repeat the request... */
818       _g_dbus_worker_do_read_unlocked (worker);
819     }
820
821  out:
822   g_mutex_unlock (&worker->read_lock);
823
824   /* gives up the reference acquired when calling g_input_stream_read_async() */
825   _g_dbus_worker_unref (worker);
826 }
827
828 /* called in private thread shared by all GDBusConnection instances (with read-lock held) */
829 static void
830 _g_dbus_worker_do_read_unlocked (GDBusWorker *worker)
831 {
832   /* Note that we do need to keep trying to read even if close_expected is
833    * true, because only failing a read causes us to signal 'closed'.
834    */
835
836   /* if bytes_wanted is zero, it means start reading a message */
837   if (worker->read_buffer_bytes_wanted == 0)
838     {
839       worker->read_buffer_cur_size = 0;
840       worker->read_buffer_bytes_wanted = 16;
841     }
842
843   /* ensure we have a (big enough) buffer */
844   if (worker->read_buffer == NULL || worker->read_buffer_bytes_wanted > worker->read_buffer_allocated_size)
845     {
846       /* TODO: 4096 is randomly chosen; might want a better chosen default minimum */
847       worker->read_buffer_allocated_size = MAX (worker->read_buffer_bytes_wanted, 4096);
848       worker->read_buffer = g_realloc (worker->read_buffer, worker->read_buffer_allocated_size);
849     }
850
851   if (worker->socket == NULL)
852     g_input_stream_read_async (g_io_stream_get_input_stream (worker->stream),
853                                worker->read_buffer + worker->read_buffer_cur_size,
854                                worker->read_buffer_bytes_wanted - worker->read_buffer_cur_size,
855                                G_PRIORITY_DEFAULT,
856                                worker->cancellable,
857                                (GAsyncReadyCallback) _g_dbus_worker_do_read_cb,
858                                _g_dbus_worker_ref (worker));
859   else
860     {
861       worker->read_ancillary_messages = NULL;
862       worker->read_num_ancillary_messages = 0;
863       _g_socket_read_with_control_messages (worker->socket,
864                                             worker->read_buffer + worker->read_buffer_cur_size,
865                                             worker->read_buffer_bytes_wanted - worker->read_buffer_cur_size,
866                                             &worker->read_ancillary_messages,
867                                             &worker->read_num_ancillary_messages,
868                                             G_PRIORITY_DEFAULT,
869                                             worker->cancellable,
870                                             (GAsyncReadyCallback) _g_dbus_worker_do_read_cb,
871                                             _g_dbus_worker_ref (worker));
872     }
873 }
874
875 /* called in private thread shared by all GDBusConnection instances (without read-lock held) */
876 static gboolean
877 _g_dbus_worker_do_initial_read (gpointer data)
878 {
879   //GDBusWorker *worker = data;
880   //g_mutex_lock (&worker->read_lock);
881   //_g_dbus_worker_do_read_unlocked (worker);
882   //g_mutex_unlock (&worker->read_lock);
883   //return FALSE;
884 }
885
886 /* ---------------------------------------------------------------------------------------------------- */
887
888 struct _MessageToWriteData
889 {
890   GDBusWorker  *worker;
891   GDBusMessage *message;
892   gchar        *blob;
893   gsize         blob_size;
894
895   gsize               total_written;
896   GSimpleAsyncResult *simple;
897
898 };
899
900 static void
901 message_to_write_data_free (MessageToWriteData *data)
902 {
903   _g_dbus_worker_unref (data->worker);
904   if (data->message)
905     g_object_unref (data->message);
906   g_free (data->blob);
907   g_free (data);
908 }
909
910 /* ---------------------------------------------------------------------------------------------------- */
911
912 static void write_message_continue_writing (MessageToWriteData *data);
913
914 /* called in private thread shared by all GDBusConnection instances
915  *
916  * write-lock is not held on entry
917  * output_pending is PENDING_WRITE on entry
918  */
919 static void
920 write_message_async_cb (GObject      *source_object,
921                         GAsyncResult *res,
922                         gpointer      user_data)
923 {
924   MessageToWriteData *data = user_data;
925   GSimpleAsyncResult *simple;
926   gssize bytes_written;
927   GError *error;
928
929   /* Note: we can't access data->simple after calling g_async_result_complete () because the
930    * callback can free @data and we're not completing in idle. So use a copy of the pointer.
931    */
932   simple = data->simple;
933
934   error = NULL;
935   bytes_written = g_output_stream_write_finish (G_OUTPUT_STREAM (source_object),
936                                                 res,
937                                                 &error);
938   if (bytes_written == -1)
939     {
940       g_simple_async_result_take_error (simple, error);
941       g_simple_async_result_complete (simple);
942       g_object_unref (simple);
943       goto out;
944     }
945   g_assert (bytes_written > 0); /* zero is never returned */
946
947   write_message_print_transport_debug (bytes_written, data);
948
949   data->total_written += bytes_written;
950   g_assert (data->total_written <= data->blob_size);
951   if (data->total_written == data->blob_size)
952     {
953       g_simple_async_result_complete (simple);
954       g_object_unref (simple);
955       goto out;
956     }
957
958   write_message_continue_writing (data);
959
960  out:
961   ;
962 }
963
964 /* called in private thread shared by all GDBusConnection instances
965  *
966  * write-lock is not held on entry
967  * output_pending is PENDING_WRITE on entry
968  */
969 #ifdef G_OS_UNIX
970 static gboolean
971 on_socket_ready (GSocket      *socket,
972                  GIOCondition  condition,
973                  gpointer      user_data)
974 {
975   MessageToWriteData *data = user_data;
976   write_message_continue_writing (data);
977   return FALSE; /* remove source */
978 }
979 #endif
980
981 /* called in private thread shared by all GDBusConnection instances
982  *
983  * write-lock is not held on entry
984  * output_pending is PENDING_WRITE on entry
985  */
986 static void
987 write_message_continue_writing (MessageToWriteData *data)
988 {
989 #ifdef G_OS_UNIX
990   GSimpleAsyncResult *simple;
991   simple = data->simple;
992 #endif
993
994   if (G_IS_KDBUS_CONNECTION (data->worker->stream))
995     {
996       GError *error;
997
998       g_print("TEST KDBUS!\n");
999       g_kdbus_send_message(data->worker->kdbus, data->message, data->blob, data->blob_size, error);
1000     }
1001   else
1002     {
1003       GOutputStream *ostream;
1004 #ifdef G_OS_UNIX
1005       GUnixFDList *fd_list;
1006 #endif
1007
1008       ostream = g_io_stream_get_output_stream (data->worker->stream);
1009 #ifdef G_OS_UNIX
1010       fd_list = g_dbus_message_get_unix_fd_list (data->message);
1011 #endif
1012
1013       g_assert (!g_output_stream_has_pending (ostream));
1014       g_assert_cmpint (data->total_written, <, data->blob_size);
1015
1016       if (FALSE)
1017         {
1018         }
1019 #ifdef G_OS_UNIX
1020       else if (G_IS_SOCKET_OUTPUT_STREAM (ostream) && data->total_written == 0)
1021         {
1022            GOutputVector vector;
1023            GSocketControlMessage *control_message;
1024            gssize bytes_written;
1025            GError *error;
1026
1027            vector.buffer = data->blob;
1028            vector.size = data->blob_size;
1029
1030            control_message = NULL;
1031            if (fd_list != NULL && g_unix_fd_list_get_length (fd_list) > 0)
1032              {
1033                if (!(data->worker->capabilities & G_DBUS_CAPABILITY_FLAGS_UNIX_FD_PASSING))
1034                  {
1035                    g_simple_async_result_set_error (simple,
1036                                                     G_IO_ERROR,
1037                                                     G_IO_ERROR_FAILED,
1038                                                     "Tried sending a file descriptor but remote peer does not support this capability");
1039                    g_simple_async_result_complete (simple);
1040                    g_object_unref (simple);
1041                    goto out;
1042                  }
1043                 control_message = g_unix_fd_message_new_with_fd_list (fd_list);
1044               }
1045
1046             error = NULL;
1047             bytes_written = g_socket_send_message (data->worker->socket,
1048                                                   NULL, /* address */
1049                                                   &vector,
1050                                                   1,
1051                                                   control_message != NULL ? &control_message : NULL,
1052                                                   control_message != NULL ? 1 : 0,
1053                                                   G_SOCKET_MSG_NONE,
1054                                                   data->worker->cancellable,
1055                                                   &error);
1056            if (control_message != NULL)
1057              g_object_unref (control_message);
1058
1059            if (bytes_written == -1)
1060              {
1061                /* Handle WOULD_BLOCK by waiting until there's room in the buffer */
1062                if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_WOULD_BLOCK))
1063                  {
1064                    GSource *source;
1065                    source = g_socket_create_source (data->worker->socket,
1066                                                     G_IO_OUT | G_IO_HUP | G_IO_ERR,
1067                                                     data->worker->cancellable);
1068                    g_source_set_callback (source,
1069                                           (GSourceFunc) on_socket_ready,
1070                                           data,
1071                                           NULL); /* GDestroyNotify */
1072                    g_source_attach (source, g_main_context_get_thread_default ());
1073                    g_source_unref (source);
1074                    g_error_free (error);
1075                    goto out;
1076                  }
1077                g_simple_async_result_take_error (simple, error);
1078                g_simple_async_result_complete (simple);
1079                g_object_unref (simple);
1080                goto out;
1081              }
1082            g_assert (bytes_written > 0); /* zero is never returned */
1083
1084            write_message_print_transport_debug (bytes_written, data);
1085
1086            data->total_written += bytes_written;
1087            g_assert (data->total_written <= data->blob_size);
1088            if (data->total_written == data->blob_size)
1089              {
1090                g_simple_async_result_complete (simple);
1091                g_object_unref (simple);
1092                goto out;
1093              }
1094
1095            write_message_continue_writing (data);
1096          }
1097 #endif
1098        else
1099          {
1100 #ifdef G_OS_UNIX
1101            if (fd_list != NULL)
1102              {
1103                g_simple_async_result_set_error (simple,
1104                                                 G_IO_ERROR,
1105                                                 G_IO_ERROR_FAILED,
1106                                                 "Tried sending a file descriptor on unsupported stream of type %s",
1107                                                 g_type_name (G_TYPE_FROM_INSTANCE (ostream)));
1108                g_simple_async_result_complete (simple);
1109                g_object_unref (simple);
1110                goto out;
1111              }
1112 #endif
1113
1114             g_output_stream_write_async (ostream,
1115                                         (const gchar *) data->blob + data->total_written,
1116                                         data->blob_size - data->total_written,
1117                                         G_PRIORITY_DEFAULT,
1118                                         data->worker->cancellable,
1119                                         write_message_async_cb,
1120                                         data);
1121          }
1122     }
1123 #ifdef G_OS_UNIX
1124  out:
1125 #endif
1126   ;
1127 }
1128
1129 /* called in private thread shared by all GDBusConnection instances
1130  *
1131  * write-lock is not held on entry
1132  * output_pending is PENDING_WRITE on entry
1133  */
1134 static void
1135 write_message_async (GDBusWorker         *worker,
1136                      MessageToWriteData  *data,
1137                      GAsyncReadyCallback  callback,
1138                      gpointer             user_data)
1139 {
1140   data->simple = g_simple_async_result_new (NULL,
1141                                             callback,
1142                                             user_data,
1143                                             write_message_async);
1144   data->total_written = 0;
1145   write_message_continue_writing (data);
1146 }
1147
1148 /* called in private thread shared by all GDBusConnection instances (with write-lock held) */
1149 static gboolean
1150 write_message_finish (GAsyncResult   *res,
1151                       GError        **error)
1152 {
1153   g_warn_if_fail (g_simple_async_result_get_source_tag (G_SIMPLE_ASYNC_RESULT (res)) == write_message_async);
1154   if (g_simple_async_result_propagate_error (G_SIMPLE_ASYNC_RESULT (res), error))
1155     return FALSE;
1156   else
1157     return TRUE;
1158 }
1159 /* ---------------------------------------------------------------------------------------------------- */
1160
1161 static void continue_writing (GDBusWorker *worker);
1162
1163 typedef struct
1164 {
1165   GDBusWorker *worker;
1166   GList *flushers;
1167 } FlushAsyncData;
1168
1169 static void
1170 flush_data_list_complete (const GList  *flushers,
1171                           const GError *error)
1172 {
1173   const GList *l;
1174
1175   for (l = flushers; l != NULL; l = l->next)
1176     {
1177       FlushData *f = l->data;
1178
1179       f->error = error != NULL ? g_error_copy (error) : NULL;
1180
1181       g_mutex_lock (&f->mutex);
1182       g_cond_signal (&f->cond);
1183       g_mutex_unlock (&f->mutex);
1184     }
1185 }
1186
1187 /* called in private thread shared by all GDBusConnection instances
1188  *
1189  * write-lock is not held on entry
1190  * output_pending is PENDING_FLUSH on entry
1191  */
1192 static void
1193 ostream_flush_cb (GObject      *source_object,
1194                   GAsyncResult *res,
1195                   gpointer      user_data)
1196 {
1197   FlushAsyncData *data = user_data;
1198   GError *error;
1199
1200   error = NULL;
1201   g_output_stream_flush_finish (G_OUTPUT_STREAM (source_object),
1202                                 res,
1203                                 &error);
1204
1205   if (error == NULL)
1206     {
1207       if (G_UNLIKELY (_g_dbus_debug_transport ()))
1208         {
1209           _g_dbus_debug_print_lock ();
1210           g_print ("========================================================================\n"
1211                    "GDBus-debug:Transport:\n"
1212                    "  ---- FLUSHED stream of type %s\n",
1213                    g_type_name (G_TYPE_FROM_INSTANCE (g_io_stream_get_output_stream (data->worker->stream))));
1214           _g_dbus_debug_print_unlock ();
1215         }
1216     }
1217
1218   g_assert (data->flushers != NULL);
1219   flush_data_list_complete (data->flushers, error);
1220   g_list_free (data->flushers);
1221
1222   if (error != NULL)
1223     g_error_free (error);
1224
1225   /* Make sure we tell folks that we don't have additional
1226      flushes pending */
1227   g_mutex_lock (&data->worker->write_lock);
1228   data->worker->write_num_messages_flushed = data->worker->write_num_messages_written;
1229   g_assert (data->worker->output_pending == PENDING_FLUSH);
1230   data->worker->output_pending = PENDING_NONE;
1231   g_mutex_unlock (&data->worker->write_lock);
1232
1233   /* OK, cool, finally kick off the next write */
1234   continue_writing (data->worker);
1235
1236   _g_dbus_worker_unref (data->worker);
1237   g_free (data);
1238 }
1239
1240 /* called in private thread shared by all GDBusConnection instances
1241  *
1242  * write-lock is not held on entry
1243  * output_pending is PENDING_FLUSH on entry
1244  */
1245 static void
1246 start_flush (FlushAsyncData *data)
1247 {
1248   g_output_stream_flush_async (g_io_stream_get_output_stream (data->worker->stream),
1249                                G_PRIORITY_DEFAULT,
1250                                data->worker->cancellable,
1251                                ostream_flush_cb,
1252                                data);
1253 }
1254
1255 /* called in private thread shared by all GDBusConnection instances
1256  *
1257  * write-lock is held on entry
1258  * output_pending is PENDING_NONE on entry
1259  */
1260 static void
1261 message_written_unlocked (GDBusWorker *worker,
1262                           MessageToWriteData *message_data)
1263 {
1264   if (G_UNLIKELY (_g_dbus_debug_message ()))
1265     {
1266       gchar *s;
1267       _g_dbus_debug_print_lock ();
1268       g_print ("========================================================================\n"
1269                "GDBus-debug:Message:\n"
1270                "  >>>> SENT D-Bus message (%" G_GSIZE_FORMAT " bytes)\n",
1271                message_data->blob_size);
1272       s = g_dbus_message_print (message_data->message, 2);
1273       g_print ("%s", s);
1274       g_free (s);
1275       if (G_UNLIKELY (_g_dbus_debug_payload ()))
1276         {
1277           s = _g_dbus_hexdump (message_data->blob, message_data->blob_size, 2);
1278           g_print ("%s\n", s);
1279           g_free (s);
1280         }
1281       _g_dbus_debug_print_unlock ();
1282     }
1283
1284   worker->write_num_messages_written += 1;
1285 }
1286
1287 /* called in private thread shared by all GDBusConnection instances
1288  *
1289  * write-lock is held on entry
1290  * output_pending is PENDING_NONE on entry
1291  *
1292  * Returns: non-%NULL, setting @output_pending, if we need to flush now
1293  */
1294 static FlushAsyncData *
1295 prepare_flush_unlocked (GDBusWorker *worker)
1296 {
1297   GList *l;
1298   GList *ll;
1299   GList *flushers;
1300
1301   flushers = NULL;
1302   for (l = worker->write_pending_flushes; l != NULL; l = ll)
1303     {
1304       FlushData *f = l->data;
1305       ll = l->next;
1306
1307       if (f->number_to_wait_for == worker->write_num_messages_written)
1308         {
1309           flushers = g_list_append (flushers, f);
1310           worker->write_pending_flushes = g_list_delete_link (worker->write_pending_flushes, l);
1311         }
1312     }
1313   if (flushers != NULL)
1314     {
1315       g_assert (worker->output_pending == PENDING_NONE);
1316       worker->output_pending = PENDING_FLUSH;
1317     }
1318
1319   if (flushers != NULL)
1320     {
1321       FlushAsyncData *data;
1322
1323       data = g_new0 (FlushAsyncData, 1);
1324       data->worker = _g_dbus_worker_ref (worker);
1325       data->flushers = flushers;
1326       return data;
1327     }
1328
1329   return NULL;
1330 }
1331
1332 /* called in private thread shared by all GDBusConnection instances
1333  *
1334  * write-lock is not held on entry
1335  * output_pending is PENDING_WRITE on entry
1336  */
1337 static void
1338 write_message_cb (GObject       *source_object,
1339                   GAsyncResult  *res,
1340                   gpointer       user_data)
1341 {
1342   MessageToWriteData *data = user_data;
1343   GError *error;
1344
1345   g_mutex_lock (&data->worker->write_lock);
1346   g_assert (data->worker->output_pending == PENDING_WRITE);
1347   data->worker->output_pending = PENDING_NONE;
1348
1349   error = NULL;
1350   if (!write_message_finish (res, &error))
1351     {
1352       g_mutex_unlock (&data->worker->write_lock);
1353
1354       /* TODO: handle */
1355       _g_dbus_worker_emit_disconnected (data->worker, TRUE, error);
1356       g_error_free (error);
1357
1358       g_mutex_lock (&data->worker->write_lock);
1359     }
1360
1361   message_written_unlocked (data->worker, data);
1362
1363   g_mutex_unlock (&data->worker->write_lock);
1364
1365   continue_writing (data->worker);
1366
1367   message_to_write_data_free (data);
1368 }
1369
1370 /* called in private thread shared by all GDBusConnection instances
1371  *
1372  * write-lock is not held on entry
1373  * output_pending is PENDING_CLOSE on entry
1374  */
1375 static void
1376 iostream_close_cb (GObject      *source_object,
1377                    GAsyncResult *res,
1378                    gpointer      user_data)
1379 {
1380   GDBusWorker *worker = user_data;
1381   GError *error = NULL;
1382   GList *pending_close_attempts, *pending_flush_attempts;
1383   GQueue *send_queue;
1384
1385   g_io_stream_close_finish (worker->stream, res, &error);
1386
1387   g_mutex_lock (&worker->write_lock);
1388
1389   pending_close_attempts = worker->pending_close_attempts;
1390   worker->pending_close_attempts = NULL;
1391
1392   pending_flush_attempts = worker->write_pending_flushes;
1393   worker->write_pending_flushes = NULL;
1394
1395   send_queue = worker->write_queue;
1396   worker->write_queue = g_queue_new ();
1397
1398   g_assert (worker->output_pending == PENDING_CLOSE);
1399   worker->output_pending = PENDING_NONE;
1400
1401   g_mutex_unlock (&worker->write_lock);
1402
1403   while (pending_close_attempts != NULL)
1404     {
1405       CloseData *close_data = pending_close_attempts->data;
1406
1407       pending_close_attempts = g_list_delete_link (pending_close_attempts,
1408                                                    pending_close_attempts);
1409
1410       if (close_data->result != NULL)
1411         {
1412           if (error != NULL)
1413             g_simple_async_result_set_from_error (close_data->result, error);
1414
1415           /* this must be in an idle because the result is likely to be
1416            * intended for another thread
1417            */
1418           g_simple_async_result_complete_in_idle (close_data->result);
1419         }
1420
1421       close_data_free (close_data);
1422     }
1423
1424   g_clear_error (&error);
1425
1426   /* all messages queued for sending are discarded */
1427   g_queue_free_full (send_queue, (GDestroyNotify) message_to_write_data_free);
1428   /* all queued flushes fail */
1429   error = g_error_new (G_IO_ERROR, G_IO_ERROR_CANCELLED,
1430                        _("Operation was cancelled"));
1431   flush_data_list_complete (pending_flush_attempts, error);
1432   g_list_free (pending_flush_attempts);
1433   g_clear_error (&error);
1434
1435   _g_dbus_worker_unref (worker);
1436 }
1437
1438 /* called in private thread shared by all GDBusConnection instances
1439  *
1440  * write-lock is not held on entry
1441  * output_pending must be PENDING_NONE on entry
1442  */
1443 static void
1444 continue_writing (GDBusWorker *worker)
1445 {
1446   MessageToWriteData *data;
1447   FlushAsyncData *flush_async_data;
1448
1449  write_next:
1450   /* we mustn't try to write two things at once */
1451   g_assert (worker->output_pending == PENDING_NONE);
1452
1453   g_mutex_lock (&worker->write_lock);
1454
1455   data = NULL;
1456   flush_async_data = NULL;
1457
1458   /* if we want to close the connection, that takes precedence */
1459   if (worker->pending_close_attempts != NULL)
1460     {
1461       worker->close_expected = TRUE;
1462       worker->output_pending = PENDING_CLOSE;
1463
1464       g_io_stream_close_async (worker->stream, G_PRIORITY_DEFAULT,
1465                                NULL, iostream_close_cb,
1466                                _g_dbus_worker_ref (worker));
1467     }
1468   else
1469     {
1470       flush_async_data = prepare_flush_unlocked (worker);
1471
1472       if (flush_async_data == NULL)
1473         {
1474           data = g_queue_pop_head (worker->write_queue);
1475
1476           if (data != NULL)
1477             worker->output_pending = PENDING_WRITE;
1478         }
1479     }
1480
1481   g_mutex_unlock (&worker->write_lock);
1482
1483   /* Note that write_lock is only used for protecting the @write_queue
1484    * and @output_pending fields of the GDBusWorker struct ... which we
1485    * need to modify from arbitrary threads in _g_dbus_worker_send_message().
1486    *
1487    * Therefore, it's fine to drop it here when calling back into user
1488    * code and then writing the message out onto the GIOStream since this
1489    * function only runs on the worker thread.
1490    */
1491
1492   if (flush_async_data != NULL)
1493     {
1494       start_flush (flush_async_data);
1495       g_assert (data == NULL);
1496     }
1497   else if (data != NULL)
1498     {
1499       GDBusMessage *old_message;
1500       guchar *new_blob;
1501       gsize new_blob_size;
1502       GError *error;
1503
1504       old_message = data->message;
1505       data->message = _g_dbus_worker_emit_message_about_to_be_sent (worker, data->message);
1506       if (data->message == old_message)
1507         {
1508           /* filters had no effect - do nothing */
1509         }
1510       else if (data->message == NULL)
1511         {
1512           /* filters dropped message */
1513           g_mutex_lock (&worker->write_lock);
1514           worker->output_pending = PENDING_NONE;
1515           g_mutex_unlock (&worker->write_lock);
1516           message_to_write_data_free (data);
1517           goto write_next;
1518         }
1519       else
1520         {
1521           /* filters altered the message -> reencode */
1522           error = NULL;
1523           new_blob = g_dbus_message_to_blob (data->message,
1524                                              &new_blob_size,
1525                                              worker->capabilities,
1526                                              &error);
1527           if (new_blob == NULL)
1528             {
1529               /* if filter make the GDBusMessage unencodeable, just complain on stderr and send
1530                * the old message instead
1531                */
1532               g_warning ("Error encoding GDBusMessage with serial %d altered by filter function: %s",
1533                          g_dbus_message_get_serial (data->message),
1534                          error->message);
1535               g_error_free (error);
1536             }
1537           else
1538             {
1539               g_free (data->blob);
1540               data->blob = (gchar *) new_blob;
1541               data->blob_size = new_blob_size;
1542             }
1543         }
1544
1545       write_message_async (worker,
1546                            data,
1547                            write_message_cb,
1548                            data);
1549     }
1550 }
1551
1552 /* called in private thread shared by all GDBusConnection instances
1553  *
1554  * write-lock is not held on entry
1555  * output_pending may be anything
1556  */
1557 static gboolean
1558 continue_writing_in_idle_cb (gpointer user_data)
1559 {
1560   GDBusWorker *worker = user_data;
1561
1562   /* Because this is the worker thread, we can read this struct member
1563    * without holding the lock: no other thread ever modifies it.
1564    */
1565   if (worker->output_pending == PENDING_NONE)
1566     continue_writing (worker);
1567
1568   return FALSE;
1569 }
1570
1571 /*
1572  * @write_data: (transfer full) (allow-none):
1573  * @flush_data: (transfer full) (allow-none):
1574  * @close_data: (transfer full) (allow-none):
1575  *
1576  * Can be called from any thread
1577  *
1578  * write_lock is held on entry
1579  * output_pending may be anything
1580  */
1581 static void
1582 schedule_writing_unlocked (GDBusWorker        *worker,
1583                            MessageToWriteData *write_data,
1584                            FlushData          *flush_data,
1585                            CloseData          *close_data)
1586 {
1587   if (write_data != NULL)
1588     g_queue_push_tail (worker->write_queue, write_data);
1589
1590   if (flush_data != NULL)
1591     worker->write_pending_flushes = g_list_prepend (worker->write_pending_flushes, flush_data);
1592
1593   if (close_data != NULL)
1594     worker->pending_close_attempts = g_list_prepend (worker->pending_close_attempts,
1595                                                      close_data);
1596
1597   /* If we had output pending, the next bit of output will happen
1598    * automatically when it finishes, so we only need to do this
1599    * if nothing was pending.
1600    *
1601    * The idle callback will re-check that output_pending is still
1602    * PENDING_NONE, to guard against output starting before the idle.
1603    */
1604   if (worker->output_pending == PENDING_NONE)
1605     {
1606       GSource *idle_source;
1607       idle_source = g_idle_source_new ();
1608       g_source_set_priority (idle_source, G_PRIORITY_DEFAULT);
1609       g_source_set_callback (idle_source,
1610                              continue_writing_in_idle_cb,
1611                              _g_dbus_worker_ref (worker),
1612                              (GDestroyNotify) _g_dbus_worker_unref);
1613       g_source_attach (idle_source, worker->shared_thread_data->context);
1614       g_source_unref (idle_source);
1615     }
1616 }
1617
1618 /* ---------------------------------------------------------------------------------------------------- */
1619
1620 /* can be called from any thread - steals blob
1621  *
1622  * write_lock is not held on entry
1623  * output_pending may be anything
1624  */
1625 void
1626 _g_dbus_worker_send_message (GDBusWorker    *worker,
1627                              GDBusMessage   *message,
1628                              gchar          *blob,
1629                              gsize           blob_len)
1630 {
1631   MessageToWriteData *data;
1632
1633   g_return_if_fail (G_IS_DBUS_MESSAGE (message));
1634   g_return_if_fail (blob != NULL);
1635   g_return_if_fail (blob_len > 16);
1636
1637   data = g_new0 (MessageToWriteData, 1);
1638   data->worker = _g_dbus_worker_ref (worker);
1639   data->message = g_object_ref (message);
1640   data->blob = blob; /* steal! */
1641   data->blob_size = blob_len;
1642
1643   g_mutex_lock (&worker->write_lock);
1644   schedule_writing_unlocked (worker, data, NULL, NULL);
1645   g_mutex_unlock (&worker->write_lock);
1646 }
1647
1648 /* ---------------------------------------------------------------------------------------------------- */
1649
1650 GDBusWorker *
1651 _g_dbus_worker_new (GIOStream                              *stream,
1652                     GDBusCapabilityFlags                    capabilities,
1653                     gboolean                                initially_frozen,
1654                     GDBusWorkerMessageReceivedCallback      message_received_callback,
1655                     GDBusWorkerMessageAboutToBeSentCallback message_about_to_be_sent_callback,
1656                     GDBusWorkerDisconnectedCallback         disconnected_callback,
1657                     gpointer                                user_data)
1658 {
1659   GDBusWorker *worker;
1660   GSource *idle_source;
1661
1662   g_return_val_if_fail (G_IS_IO_STREAM (stream), NULL);
1663   g_return_val_if_fail (message_received_callback != NULL, NULL);
1664   g_return_val_if_fail (message_about_to_be_sent_callback != NULL, NULL);
1665   g_return_val_if_fail (disconnected_callback != NULL, NULL);
1666
1667   worker = g_new0 (GDBusWorker, 1);
1668   worker->ref_count = 1;
1669
1670   g_mutex_init (&worker->read_lock);
1671   worker->message_received_callback = message_received_callback;
1672   worker->message_about_to_be_sent_callback = message_about_to_be_sent_callback;
1673   worker->disconnected_callback = disconnected_callback;
1674   worker->user_data = user_data;
1675   worker->stream = g_object_ref (stream);
1676   worker->capabilities = capabilities;
1677   worker->cancellable = g_cancellable_new ();
1678   worker->output_pending = PENDING_NONE;
1679
1680   worker->frozen = initially_frozen;
1681   worker->received_messages_while_frozen = g_queue_new ();
1682
1683   g_mutex_init (&worker->write_lock);
1684   worker->write_queue = g_queue_new ();
1685
1686   if (G_IS_SOCKET_CONNECTION (worker->stream))
1687     worker->socket = g_socket_connection_get_socket (G_SOCKET_CONNECTION (worker->stream));
1688
1689   if (G_IS_KDBUS_CONNECTION (worker->stream))
1690     worker->kdbus = g_kdbus_connection_get_kdbus (G_KDBUS_CONNECTION (worker->stream));
1691
1692   worker->shared_thread_data = _g_dbus_shared_thread_ref ();
1693
1694   /* begin reading */
1695   idle_source = g_idle_source_new ();
1696   g_source_set_priority (idle_source, G_PRIORITY_DEFAULT);
1697   g_source_set_callback (idle_source,
1698                          _g_dbus_worker_do_initial_read,
1699                          _g_dbus_worker_ref (worker),
1700                          (GDestroyNotify) _g_dbus_worker_unref);
1701   g_source_attach (idle_source, worker->shared_thread_data->context);
1702   g_source_unref (idle_source);
1703
1704   return worker;
1705 }
1706
1707 /* ---------------------------------------------------------------------------------------------------- */
1708
1709 /* can be called from any thread
1710  *
1711  * write_lock is not held on entry
1712  * output_pending may be anything
1713  */
1714 void
1715 _g_dbus_worker_close (GDBusWorker         *worker,
1716                       GCancellable        *cancellable,
1717                       GSimpleAsyncResult  *result)
1718 {
1719   CloseData *close_data;
1720
1721   close_data = g_slice_new0 (CloseData);
1722   close_data->worker = _g_dbus_worker_ref (worker);
1723   close_data->cancellable =
1724       (cancellable == NULL ? NULL : g_object_ref (cancellable));
1725   close_data->result = (result == NULL ? NULL : g_object_ref (result));
1726
1727   /* Don't set worker->close_expected here - we're in the wrong thread.
1728    * It'll be set before the actual close happens.
1729    */
1730   g_cancellable_cancel (worker->cancellable);
1731   g_mutex_lock (&worker->write_lock);
1732   schedule_writing_unlocked (worker, NULL, NULL, close_data);
1733   g_mutex_unlock (&worker->write_lock);
1734 }
1735
1736 /* This can be called from any thread - frees worker. Note that
1737  * callbacks might still happen if called from another thread than the
1738  * worker - use your own synchronization primitive in the callbacks.
1739  *
1740  * write_lock is not held on entry
1741  * output_pending may be anything
1742  */
1743 void
1744 _g_dbus_worker_stop (GDBusWorker *worker)
1745 {
1746   g_atomic_int_set (&worker->stopped, TRUE);
1747
1748   /* Cancel any pending operations and schedule a close of the underlying I/O
1749    * stream in the worker thread
1750    */
1751   _g_dbus_worker_close (worker, NULL, NULL);
1752
1753   /* _g_dbus_worker_close holds a ref until after an idle in the worker
1754    * thread has run, so we no longer need to unref in an idle like in
1755    * commit 322e25b535
1756    */
1757   _g_dbus_worker_unref (worker);
1758 }
1759
1760 /* ---------------------------------------------------------------------------------------------------- */
1761
1762 /* can be called from any thread (except the worker thread) - blocks
1763  * calling thread until all queued outgoing messages are written and
1764  * the transport has been flushed
1765  *
1766  * write_lock is not held on entry
1767  * output_pending may be anything
1768  */
1769 gboolean
1770 _g_dbus_worker_flush_sync (GDBusWorker    *worker,
1771                            GCancellable   *cancellable,
1772                            GError        **error)
1773 {
1774   gboolean ret;
1775   FlushData *data;
1776   guint64 pending_writes;
1777
1778   data = NULL;
1779   ret = TRUE;
1780
1781   g_mutex_lock (&worker->write_lock);
1782
1783   /* if the queue is empty, no write is in-flight and we haven't written
1784    * anything since the last flush, then there's nothing to wait for
1785    */
1786   pending_writes = g_queue_get_length (worker->write_queue);
1787
1788   /* if a write is in-flight, we shouldn't be satisfied until the first
1789    * flush operation that follows it
1790    */
1791   if (worker->output_pending == PENDING_WRITE)
1792     pending_writes += 1;
1793
1794   if (pending_writes > 0 ||
1795       worker->write_num_messages_written != worker->write_num_messages_flushed)
1796     {
1797       data = g_new0 (FlushData, 1);
1798       g_mutex_init (&data->mutex);
1799       g_cond_init (&data->cond);
1800       data->number_to_wait_for = worker->write_num_messages_written + pending_writes;
1801       g_mutex_lock (&data->mutex);
1802
1803       schedule_writing_unlocked (worker, NULL, data, NULL);
1804     }
1805   g_mutex_unlock (&worker->write_lock);
1806
1807   if (data != NULL)
1808     {
1809       g_cond_wait (&data->cond, &data->mutex);
1810       g_mutex_unlock (&data->mutex);
1811
1812       /* note:the element is removed from worker->write_pending_flushes in flush_cb() above */
1813       g_cond_clear (&data->cond);
1814       g_mutex_clear (&data->mutex);
1815       if (data->error != NULL)
1816         {
1817           ret = FALSE;
1818           g_propagate_error (error, data->error);
1819         }
1820       g_free (data);
1821     }
1822
1823   return ret;
1824 }
1825
1826 /* ---------------------------------------------------------------------------------------------------- */
1827
1828 #define G_DBUS_DEBUG_AUTHENTICATION (1<<0)
1829 #define G_DBUS_DEBUG_TRANSPORT      (1<<1)
1830 #define G_DBUS_DEBUG_MESSAGE        (1<<2)
1831 #define G_DBUS_DEBUG_PAYLOAD        (1<<3)
1832 #define G_DBUS_DEBUG_CALL           (1<<4)
1833 #define G_DBUS_DEBUG_SIGNAL         (1<<5)
1834 #define G_DBUS_DEBUG_INCOMING       (1<<6)
1835 #define G_DBUS_DEBUG_RETURN         (1<<7)
1836 #define G_DBUS_DEBUG_EMISSION       (1<<8)
1837 #define G_DBUS_DEBUG_ADDRESS        (1<<9)
1838
1839 static gint _gdbus_debug_flags = 0;
1840
1841 gboolean
1842 _g_dbus_debug_authentication (void)
1843 {
1844   _g_dbus_initialize ();
1845   return (_gdbus_debug_flags & G_DBUS_DEBUG_AUTHENTICATION) != 0;
1846 }
1847
1848 gboolean
1849 _g_dbus_debug_transport (void)
1850 {
1851   _g_dbus_initialize ();
1852   return (_gdbus_debug_flags & G_DBUS_DEBUG_TRANSPORT) != 0;
1853 }
1854
1855 gboolean
1856 _g_dbus_debug_message (void)
1857 {
1858   _g_dbus_initialize ();
1859   return (_gdbus_debug_flags & G_DBUS_DEBUG_MESSAGE) != 0;
1860 }
1861
1862 gboolean
1863 _g_dbus_debug_payload (void)
1864 {
1865   _g_dbus_initialize ();
1866   return (_gdbus_debug_flags & G_DBUS_DEBUG_PAYLOAD) != 0;
1867 }
1868
1869 gboolean
1870 _g_dbus_debug_call (void)
1871 {
1872   _g_dbus_initialize ();
1873   return (_gdbus_debug_flags & G_DBUS_DEBUG_CALL) != 0;
1874 }
1875
1876 gboolean
1877 _g_dbus_debug_signal (void)
1878 {
1879   _g_dbus_initialize ();
1880   return (_gdbus_debug_flags & G_DBUS_DEBUG_SIGNAL) != 0;
1881 }
1882
1883 gboolean
1884 _g_dbus_debug_incoming (void)
1885 {
1886   _g_dbus_initialize ();
1887   return (_gdbus_debug_flags & G_DBUS_DEBUG_INCOMING) != 0;
1888 }
1889
1890 gboolean
1891 _g_dbus_debug_return (void)
1892 {
1893   _g_dbus_initialize ();
1894   return (_gdbus_debug_flags & G_DBUS_DEBUG_RETURN) != 0;
1895 }
1896
1897 gboolean
1898 _g_dbus_debug_emission (void)
1899 {
1900   _g_dbus_initialize ();
1901   return (_gdbus_debug_flags & G_DBUS_DEBUG_EMISSION) != 0;
1902 }
1903
1904 gboolean
1905 _g_dbus_debug_address (void)
1906 {
1907   _g_dbus_initialize ();
1908   return (_gdbus_debug_flags & G_DBUS_DEBUG_ADDRESS) != 0;
1909 }
1910
1911 G_LOCK_DEFINE_STATIC (print_lock);
1912
1913 void
1914 _g_dbus_debug_print_lock (void)
1915 {
1916   G_LOCK (print_lock);
1917 }
1918
1919 void
1920 _g_dbus_debug_print_unlock (void)
1921 {
1922   G_UNLOCK (print_lock);
1923 }
1924
1925 /*
1926  * _g_dbus_initialize:
1927  *
1928  * Does various one-time init things such as
1929  *
1930  *  - registering the G_DBUS_ERROR error domain
1931  *  - parses the G_DBUS_DEBUG environment variable
1932  */
1933 void
1934 _g_dbus_initialize (void)
1935 {
1936   static volatile gsize initialized = 0;
1937
1938   if (g_once_init_enter (&initialized))
1939     {
1940       volatile GQuark g_dbus_error_domain;
1941       const gchar *debug;
1942
1943       g_dbus_error_domain = G_DBUS_ERROR;
1944       (g_dbus_error_domain); /* To avoid -Wunused-but-set-variable */
1945
1946       debug = g_getenv ("G_DBUS_DEBUG");
1947       if (debug != NULL)
1948         {
1949           const GDebugKey keys[] = {
1950             { "authentication", G_DBUS_DEBUG_AUTHENTICATION },
1951             { "transport",      G_DBUS_DEBUG_TRANSPORT      },
1952             { "message",        G_DBUS_DEBUG_MESSAGE        },
1953             { "payload",        G_DBUS_DEBUG_PAYLOAD        },
1954             { "call",           G_DBUS_DEBUG_CALL           },
1955             { "signal",         G_DBUS_DEBUG_SIGNAL         },
1956             { "incoming",       G_DBUS_DEBUG_INCOMING       },
1957             { "return",         G_DBUS_DEBUG_RETURN         },
1958             { "emission",       G_DBUS_DEBUG_EMISSION       },
1959             { "address",        G_DBUS_DEBUG_ADDRESS        }
1960           };
1961
1962           _gdbus_debug_flags = g_parse_debug_string (debug, keys, G_N_ELEMENTS (keys));
1963           if (_gdbus_debug_flags & G_DBUS_DEBUG_PAYLOAD)
1964             _gdbus_debug_flags |= G_DBUS_DEBUG_MESSAGE;
1965         }
1966
1967       g_once_init_leave (&initialized, 1);
1968     }
1969 }
1970
1971 /* ---------------------------------------------------------------------------------------------------- */
1972
1973 GVariantType *
1974 _g_dbus_compute_complete_signature (GDBusArgInfo **args)
1975 {
1976   const GVariantType *arg_types[256];
1977   guint n;
1978
1979   if (args)
1980     for (n = 0; args[n] != NULL; n++)
1981       {
1982         /* DBus places a hard limit of 255 on signature length.
1983          * therefore number of args must be less than 256.
1984          */
1985         g_assert (n < 256);
1986
1987         arg_types[n] = G_VARIANT_TYPE (args[n]->signature);
1988
1989         if G_UNLIKELY (arg_types[n] == NULL)
1990           return NULL;
1991       }
1992   else
1993     n = 0;
1994
1995   return g_variant_type_new_tuple (arg_types, n);
1996 }
1997
1998 /* ---------------------------------------------------------------------------------------------------- */
1999
2000 #ifdef G_OS_WIN32
2001
2002 extern BOOL WINAPI ConvertSidToStringSidA (PSID Sid, LPSTR *StringSid);
2003
2004 gchar *
2005 _g_dbus_win32_get_user_sid (void)
2006 {
2007   HANDLE h;
2008   TOKEN_USER *user;
2009   DWORD token_information_len;
2010   PSID psid;
2011   gchar *sid;
2012   gchar *ret;
2013
2014   ret = NULL;
2015   user = NULL;
2016   h = INVALID_HANDLE_VALUE;
2017
2018   if (!OpenProcessToken (GetCurrentProcess (), TOKEN_QUERY, &h))
2019     {
2020       g_warning ("OpenProcessToken failed with error code %d", (gint) GetLastError ());
2021       goto out;
2022     }
2023
2024   /* Get length of buffer */
2025   token_information_len = 0;
2026   if (!GetTokenInformation (h, TokenUser, NULL, 0, &token_information_len))
2027     {
2028       if (GetLastError () != ERROR_INSUFFICIENT_BUFFER)
2029         {
2030           g_warning ("GetTokenInformation() failed with error code %d", (gint) GetLastError ());
2031           goto out;
2032         }
2033     }
2034   user = g_malloc (token_information_len);
2035   if (!GetTokenInformation (h, TokenUser, user, token_information_len, &token_information_len))
2036     {
2037       g_warning ("GetTokenInformation() failed with error code %d", (gint) GetLastError ());
2038       goto out;
2039     }
2040
2041   psid = user->User.Sid;
2042   if (!IsValidSid (psid))
2043     {
2044       g_warning ("Invalid SID");
2045       goto out;
2046     }
2047
2048   if (!ConvertSidToStringSidA (psid, &sid))
2049     {
2050       g_warning ("Invalid SID");
2051       goto out;
2052     }
2053
2054   ret = g_strdup (sid);
2055   LocalFree (sid);
2056
2057 out:
2058   g_free (user);
2059   if (h != INVALID_HANDLE_VALUE)
2060     CloseHandle (h);
2061   return ret;
2062 }
2063 #endif
2064
2065 /* ---------------------------------------------------------------------------------------------------- */
2066
2067 gchar *
2068 _g_dbus_get_machine_id (GError **error)
2069 {
2070 #ifdef G_OS_WIN32
2071   HW_PROFILE_INFOA info;
2072   char *src, *dest, *res;
2073   int i;
2074
2075   if (!GetCurrentHwProfileA (&info))
2076     {
2077       char *message = g_win32_error_message (GetLastError ());
2078       g_set_error (error,
2079                    G_IO_ERROR,
2080                    G_IO_ERROR_FAILED,
2081                    _("Unable to get Hardware profile: %s"), message);
2082       g_free (message);
2083       return NULL;
2084     }
2085
2086   /* Form: {12340001-4980-1920-6788-123456789012} */
2087   src = &info.szHwProfileGuid[0];
2088
2089   res = g_malloc (32+1);
2090   dest = res;
2091
2092   src++; /* Skip { */
2093   for (i = 0; i < 8; i++)
2094     *dest++ = *src++;
2095   src++; /* Skip - */
2096   for (i = 0; i < 4; i++)
2097     *dest++ = *src++;
2098   src++; /* Skip - */
2099   for (i = 0; i < 4; i++)
2100     *dest++ = *src++;
2101   src++; /* Skip - */
2102   for (i = 0; i < 4; i++)
2103     *dest++ = *src++;
2104   src++; /* Skip - */
2105   for (i = 0; i < 12; i++)
2106     *dest++ = *src++;
2107   *dest = 0;
2108
2109   return res;
2110 #else
2111   gchar *ret;
2112   GError *first_error;
2113   /* TODO: use PACKAGE_LOCALSTATEDIR ? */
2114   ret = NULL;
2115   first_error = NULL;
2116   if (!g_file_get_contents ("/var/lib/dbus/machine-id",
2117                             &ret,
2118                             NULL,
2119                             &first_error) &&
2120       !g_file_get_contents ("/etc/machine-id",
2121                             &ret,
2122                             NULL,
2123                             NULL))
2124     {
2125       g_propagate_prefixed_error (error, first_error,
2126                                   _("Unable to load /var/lib/dbus/machine-id or /etc/machine-id: "));
2127     }
2128   else
2129     {
2130       /* ignore the error from the first try, if any */
2131       g_clear_error (&first_error);
2132       /* TODO: validate value */
2133       g_strstrip (ret);
2134     }
2135   return ret;
2136 #endif
2137 }
2138
2139 /* ---------------------------------------------------------------------------------------------------- */
2140
2141 gchar *
2142 _g_dbus_enum_to_string (GType enum_type, gint value)
2143 {
2144   gchar *ret;
2145   GEnumClass *klass;
2146   GEnumValue *enum_value;
2147
2148   klass = g_type_class_ref (enum_type);
2149   enum_value = g_enum_get_value (klass, value);
2150   if (enum_value != NULL)
2151     ret = g_strdup (enum_value->value_nick);
2152   else
2153     ret = g_strdup_printf ("unknown (value %d)", value);
2154   g_type_class_unref (klass);
2155   return ret;
2156 }
2157
2158 /* ---------------------------------------------------------------------------------------------------- */
2159
2160 static void
2161 write_message_print_transport_debug (gssize bytes_written,
2162                                      MessageToWriteData *data)
2163 {
2164   if (G_LIKELY (!_g_dbus_debug_transport ()))
2165     goto out;
2166
2167   _g_dbus_debug_print_lock ();
2168   g_print ("========================================================================\n"
2169            "GDBus-debug:Transport:\n"
2170            "  >>>> WROTE %" G_GSIZE_FORMAT " bytes of message with serial %d and\n"
2171            "       size %" G_GSIZE_FORMAT " from offset %" G_GSIZE_FORMAT " on a %s\n",
2172            bytes_written,
2173            g_dbus_message_get_serial (data->message),
2174            data->blob_size,
2175            data->total_written,
2176            g_type_name (G_TYPE_FROM_INSTANCE (g_io_stream_get_output_stream (data->worker->stream))));
2177   _g_dbus_debug_print_unlock ();
2178  out:
2179   ;
2180 }
2181
2182 /* ---------------------------------------------------------------------------------------------------- */
2183
2184 static void
2185 read_message_print_transport_debug (gssize bytes_read,
2186                                     GDBusWorker *worker)
2187 {
2188   gsize size;
2189   gint32 serial;
2190   gint32 message_length;
2191
2192   if (G_LIKELY (!_g_dbus_debug_transport ()))
2193     goto out;
2194
2195   size = bytes_read + worker->read_buffer_cur_size;
2196   serial = 0;
2197   message_length = 0;
2198   if (size >= 16)
2199     message_length = g_dbus_message_bytes_needed ((guchar *) worker->read_buffer, size, NULL);
2200   if (size >= 1)
2201     {
2202       switch (worker->read_buffer[0])
2203         {
2204         case 'l':
2205           if (size >= 12)
2206             serial = GUINT32_FROM_LE (((guint32 *) worker->read_buffer)[2]);
2207           break;
2208         case 'B':
2209           if (size >= 12)
2210             serial = GUINT32_FROM_BE (((guint32 *) worker->read_buffer)[2]);
2211           break;
2212         default:
2213           /* an error will be set elsewhere if this happens */
2214           goto out;
2215         }
2216     }
2217
2218     _g_dbus_debug_print_lock ();
2219   g_print ("========================================================================\n"
2220            "GDBus-debug:Transport:\n"
2221            "  <<<< READ %" G_GSIZE_FORMAT " bytes of message with serial %d and\n"
2222            "       size %d to offset %" G_GSIZE_FORMAT " from a %s\n",
2223            bytes_read,
2224            serial,
2225            message_length,
2226            worker->read_buffer_cur_size,
2227            g_type_name (G_TYPE_FROM_INSTANCE (g_io_stream_get_input_stream (worker->stream))));
2228   _g_dbus_debug_print_unlock ();
2229  out:
2230   ;
2231 }
2232
2233 /* ---------------------------------------------------------------------------------------------------- */
2234
2235 gboolean
2236 _g_signal_accumulator_false_handled (GSignalInvocationHint *ihint,
2237                                      GValue                *return_accu,
2238                                      const GValue          *handler_return,
2239                                      gpointer               dummy)
2240 {
2241   gboolean continue_emission;
2242   gboolean signal_return;
2243
2244   signal_return = g_value_get_boolean (handler_return);
2245   g_value_set_boolean (return_accu, signal_return);
2246   continue_emission = signal_return;
2247
2248   return continue_emission;
2249 }