Added kdbus stub to write function.
[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       g_print("THIS IS KDBUS!\n");
997     }
998   else
999     {
1000       GOutputStream *ostream;
1001 #ifdef G_OS_UNIX
1002       GUnixFDList *fd_list;
1003 #endif
1004
1005       ostream = g_io_stream_get_output_stream (data->worker->stream);
1006 #ifdef G_OS_UNIX
1007       fd_list = g_dbus_message_get_unix_fd_list (data->message);
1008 #endif
1009
1010       g_assert (!g_output_stream_has_pending (ostream));
1011       g_assert_cmpint (data->total_written, <, data->blob_size);
1012
1013       if (FALSE)
1014         {
1015         }
1016 #ifdef G_OS_UNIX
1017       else if (G_IS_SOCKET_OUTPUT_STREAM (ostream) && data->total_written == 0)
1018         {
1019            GOutputVector vector;
1020            GSocketControlMessage *control_message;
1021            gssize bytes_written;
1022            GError *error;
1023
1024            vector.buffer = data->blob;
1025            vector.size = data->blob_size;
1026
1027            control_message = NULL;
1028            if (fd_list != NULL && g_unix_fd_list_get_length (fd_list) > 0)
1029              {
1030                if (!(data->worker->capabilities & G_DBUS_CAPABILITY_FLAGS_UNIX_FD_PASSING))
1031                  {
1032                    g_simple_async_result_set_error (simple,
1033                                                     G_IO_ERROR,
1034                                                     G_IO_ERROR_FAILED,
1035                                                     "Tried sending a file descriptor but remote peer does not support this capability");
1036                    g_simple_async_result_complete (simple);
1037                    g_object_unref (simple);
1038                    goto out;
1039                  }
1040                 control_message = g_unix_fd_message_new_with_fd_list (fd_list);
1041               }
1042
1043             error = NULL;
1044             bytes_written = g_socket_send_message (data->worker->socket,
1045                                                   NULL, /* address */
1046                                                   &vector,
1047                                                   1,
1048                                                   control_message != NULL ? &control_message : NULL,
1049                                                   control_message != NULL ? 1 : 0,
1050                                                   G_SOCKET_MSG_NONE,
1051                                                   data->worker->cancellable,
1052                                                   &error);
1053            if (control_message != NULL)
1054              g_object_unref (control_message);
1055
1056            if (bytes_written == -1)
1057              {
1058                /* Handle WOULD_BLOCK by waiting until there's room in the buffer */
1059                if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_WOULD_BLOCK))
1060                  {
1061                    GSource *source;
1062                    source = g_socket_create_source (data->worker->socket,
1063                                                     G_IO_OUT | G_IO_HUP | G_IO_ERR,
1064                                                     data->worker->cancellable);
1065                    g_source_set_callback (source,
1066                                           (GSourceFunc) on_socket_ready,
1067                                           data,
1068                                           NULL); /* GDestroyNotify */
1069                    g_source_attach (source, g_main_context_get_thread_default ());
1070                    g_source_unref (source);
1071                    g_error_free (error);
1072                    goto out;
1073                  }
1074                g_simple_async_result_take_error (simple, error);
1075                g_simple_async_result_complete (simple);
1076                g_object_unref (simple);
1077                goto out;
1078              }
1079            g_assert (bytes_written > 0); /* zero is never returned */
1080
1081            write_message_print_transport_debug (bytes_written, data);
1082
1083            data->total_written += bytes_written;
1084            g_assert (data->total_written <= data->blob_size);
1085            if (data->total_written == data->blob_size)
1086              {
1087                g_simple_async_result_complete (simple);
1088                g_object_unref (simple);
1089                goto out;
1090              }
1091
1092            write_message_continue_writing (data);
1093          }
1094 #endif
1095        else
1096          {
1097 #ifdef G_OS_UNIX
1098            if (fd_list != NULL)
1099              {
1100                g_simple_async_result_set_error (simple,
1101                                                 G_IO_ERROR,
1102                                                 G_IO_ERROR_FAILED,
1103                                                 "Tried sending a file descriptor on unsupported stream of type %s",
1104                                                 g_type_name (G_TYPE_FROM_INSTANCE (ostream)));
1105                g_simple_async_result_complete (simple);
1106                g_object_unref (simple);
1107                goto out;
1108              }
1109 #endif
1110
1111             g_output_stream_write_async (ostream,
1112                                         (const gchar *) data->blob + data->total_written,
1113                                         data->blob_size - data->total_written,
1114                                         G_PRIORITY_DEFAULT,
1115                                         data->worker->cancellable,
1116                                         write_message_async_cb,
1117                                         data);
1118          }
1119     }
1120 #ifdef G_OS_UNIX
1121  out:
1122 #endif
1123   ;
1124 }
1125
1126 /* called in private thread shared by all GDBusConnection instances
1127  *
1128  * write-lock is not held on entry
1129  * output_pending is PENDING_WRITE on entry
1130  */
1131 static void
1132 write_message_async (GDBusWorker         *worker,
1133                      MessageToWriteData  *data,
1134                      GAsyncReadyCallback  callback,
1135                      gpointer             user_data)
1136 {
1137   data->simple = g_simple_async_result_new (NULL,
1138                                             callback,
1139                                             user_data,
1140                                             write_message_async);
1141   data->total_written = 0;
1142   write_message_continue_writing (data);
1143 }
1144
1145 /* called in private thread shared by all GDBusConnection instances (with write-lock held) */
1146 static gboolean
1147 write_message_finish (GAsyncResult   *res,
1148                       GError        **error)
1149 {
1150   g_warn_if_fail (g_simple_async_result_get_source_tag (G_SIMPLE_ASYNC_RESULT (res)) == write_message_async);
1151   if (g_simple_async_result_propagate_error (G_SIMPLE_ASYNC_RESULT (res), error))
1152     return FALSE;
1153   else
1154     return TRUE;
1155 }
1156 /* ---------------------------------------------------------------------------------------------------- */
1157
1158 static void continue_writing (GDBusWorker *worker);
1159
1160 typedef struct
1161 {
1162   GDBusWorker *worker;
1163   GList *flushers;
1164 } FlushAsyncData;
1165
1166 static void
1167 flush_data_list_complete (const GList  *flushers,
1168                           const GError *error)
1169 {
1170   const GList *l;
1171
1172   for (l = flushers; l != NULL; l = l->next)
1173     {
1174       FlushData *f = l->data;
1175
1176       f->error = error != NULL ? g_error_copy (error) : NULL;
1177
1178       g_mutex_lock (&f->mutex);
1179       g_cond_signal (&f->cond);
1180       g_mutex_unlock (&f->mutex);
1181     }
1182 }
1183
1184 /* called in private thread shared by all GDBusConnection instances
1185  *
1186  * write-lock is not held on entry
1187  * output_pending is PENDING_FLUSH on entry
1188  */
1189 static void
1190 ostream_flush_cb (GObject      *source_object,
1191                   GAsyncResult *res,
1192                   gpointer      user_data)
1193 {
1194   FlushAsyncData *data = user_data;
1195   GError *error;
1196
1197   error = NULL;
1198   g_output_stream_flush_finish (G_OUTPUT_STREAM (source_object),
1199                                 res,
1200                                 &error);
1201
1202   if (error == NULL)
1203     {
1204       if (G_UNLIKELY (_g_dbus_debug_transport ()))
1205         {
1206           _g_dbus_debug_print_lock ();
1207           g_print ("========================================================================\n"
1208                    "GDBus-debug:Transport:\n"
1209                    "  ---- FLUSHED stream of type %s\n",
1210                    g_type_name (G_TYPE_FROM_INSTANCE (g_io_stream_get_output_stream (data->worker->stream))));
1211           _g_dbus_debug_print_unlock ();
1212         }
1213     }
1214
1215   g_assert (data->flushers != NULL);
1216   flush_data_list_complete (data->flushers, error);
1217   g_list_free (data->flushers);
1218
1219   if (error != NULL)
1220     g_error_free (error);
1221
1222   /* Make sure we tell folks that we don't have additional
1223      flushes pending */
1224   g_mutex_lock (&data->worker->write_lock);
1225   data->worker->write_num_messages_flushed = data->worker->write_num_messages_written;
1226   g_assert (data->worker->output_pending == PENDING_FLUSH);
1227   data->worker->output_pending = PENDING_NONE;
1228   g_mutex_unlock (&data->worker->write_lock);
1229
1230   /* OK, cool, finally kick off the next write */
1231   continue_writing (data->worker);
1232
1233   _g_dbus_worker_unref (data->worker);
1234   g_free (data);
1235 }
1236
1237 /* called in private thread shared by all GDBusConnection instances
1238  *
1239  * write-lock is not held on entry
1240  * output_pending is PENDING_FLUSH on entry
1241  */
1242 static void
1243 start_flush (FlushAsyncData *data)
1244 {
1245   g_output_stream_flush_async (g_io_stream_get_output_stream (data->worker->stream),
1246                                G_PRIORITY_DEFAULT,
1247                                data->worker->cancellable,
1248                                ostream_flush_cb,
1249                                data);
1250 }
1251
1252 /* called in private thread shared by all GDBusConnection instances
1253  *
1254  * write-lock is held on entry
1255  * output_pending is PENDING_NONE on entry
1256  */
1257 static void
1258 message_written_unlocked (GDBusWorker *worker,
1259                           MessageToWriteData *message_data)
1260 {
1261   if (G_UNLIKELY (_g_dbus_debug_message ()))
1262     {
1263       gchar *s;
1264       _g_dbus_debug_print_lock ();
1265       g_print ("========================================================================\n"
1266                "GDBus-debug:Message:\n"
1267                "  >>>> SENT D-Bus message (%" G_GSIZE_FORMAT " bytes)\n",
1268                message_data->blob_size);
1269       s = g_dbus_message_print (message_data->message, 2);
1270       g_print ("%s", s);
1271       g_free (s);
1272       if (G_UNLIKELY (_g_dbus_debug_payload ()))
1273         {
1274           s = _g_dbus_hexdump (message_data->blob, message_data->blob_size, 2);
1275           g_print ("%s\n", s);
1276           g_free (s);
1277         }
1278       _g_dbus_debug_print_unlock ();
1279     }
1280
1281   worker->write_num_messages_written += 1;
1282 }
1283
1284 /* called in private thread shared by all GDBusConnection instances
1285  *
1286  * write-lock is held on entry
1287  * output_pending is PENDING_NONE on entry
1288  *
1289  * Returns: non-%NULL, setting @output_pending, if we need to flush now
1290  */
1291 static FlushAsyncData *
1292 prepare_flush_unlocked (GDBusWorker *worker)
1293 {
1294   GList *l;
1295   GList *ll;
1296   GList *flushers;
1297
1298   flushers = NULL;
1299   for (l = worker->write_pending_flushes; l != NULL; l = ll)
1300     {
1301       FlushData *f = l->data;
1302       ll = l->next;
1303
1304       if (f->number_to_wait_for == worker->write_num_messages_written)
1305         {
1306           flushers = g_list_append (flushers, f);
1307           worker->write_pending_flushes = g_list_delete_link (worker->write_pending_flushes, l);
1308         }
1309     }
1310   if (flushers != NULL)
1311     {
1312       g_assert (worker->output_pending == PENDING_NONE);
1313       worker->output_pending = PENDING_FLUSH;
1314     }
1315
1316   if (flushers != NULL)
1317     {
1318       FlushAsyncData *data;
1319
1320       data = g_new0 (FlushAsyncData, 1);
1321       data->worker = _g_dbus_worker_ref (worker);
1322       data->flushers = flushers;
1323       return data;
1324     }
1325
1326   return NULL;
1327 }
1328
1329 /* called in private thread shared by all GDBusConnection instances
1330  *
1331  * write-lock is not held on entry
1332  * output_pending is PENDING_WRITE on entry
1333  */
1334 static void
1335 write_message_cb (GObject       *source_object,
1336                   GAsyncResult  *res,
1337                   gpointer       user_data)
1338 {
1339   MessageToWriteData *data = user_data;
1340   GError *error;
1341
1342   g_mutex_lock (&data->worker->write_lock);
1343   g_assert (data->worker->output_pending == PENDING_WRITE);
1344   data->worker->output_pending = PENDING_NONE;
1345
1346   error = NULL;
1347   if (!write_message_finish (res, &error))
1348     {
1349       g_mutex_unlock (&data->worker->write_lock);
1350
1351       /* TODO: handle */
1352       _g_dbus_worker_emit_disconnected (data->worker, TRUE, error);
1353       g_error_free (error);
1354
1355       g_mutex_lock (&data->worker->write_lock);
1356     }
1357
1358   message_written_unlocked (data->worker, data);
1359
1360   g_mutex_unlock (&data->worker->write_lock);
1361
1362   continue_writing (data->worker);
1363
1364   message_to_write_data_free (data);
1365 }
1366
1367 /* called in private thread shared by all GDBusConnection instances
1368  *
1369  * write-lock is not held on entry
1370  * output_pending is PENDING_CLOSE on entry
1371  */
1372 static void
1373 iostream_close_cb (GObject      *source_object,
1374                    GAsyncResult *res,
1375                    gpointer      user_data)
1376 {
1377   GDBusWorker *worker = user_data;
1378   GError *error = NULL;
1379   GList *pending_close_attempts, *pending_flush_attempts;
1380   GQueue *send_queue;
1381
1382   g_io_stream_close_finish (worker->stream, res, &error);
1383
1384   g_mutex_lock (&worker->write_lock);
1385
1386   pending_close_attempts = worker->pending_close_attempts;
1387   worker->pending_close_attempts = NULL;
1388
1389   pending_flush_attempts = worker->write_pending_flushes;
1390   worker->write_pending_flushes = NULL;
1391
1392   send_queue = worker->write_queue;
1393   worker->write_queue = g_queue_new ();
1394
1395   g_assert (worker->output_pending == PENDING_CLOSE);
1396   worker->output_pending = PENDING_NONE;
1397
1398   g_mutex_unlock (&worker->write_lock);
1399
1400   while (pending_close_attempts != NULL)
1401     {
1402       CloseData *close_data = pending_close_attempts->data;
1403
1404       pending_close_attempts = g_list_delete_link (pending_close_attempts,
1405                                                    pending_close_attempts);
1406
1407       if (close_data->result != NULL)
1408         {
1409           if (error != NULL)
1410             g_simple_async_result_set_from_error (close_data->result, error);
1411
1412           /* this must be in an idle because the result is likely to be
1413            * intended for another thread
1414            */
1415           g_simple_async_result_complete_in_idle (close_data->result);
1416         }
1417
1418       close_data_free (close_data);
1419     }
1420
1421   g_clear_error (&error);
1422
1423   /* all messages queued for sending are discarded */
1424   g_queue_free_full (send_queue, (GDestroyNotify) message_to_write_data_free);
1425   /* all queued flushes fail */
1426   error = g_error_new (G_IO_ERROR, G_IO_ERROR_CANCELLED,
1427                        _("Operation was cancelled"));
1428   flush_data_list_complete (pending_flush_attempts, error);
1429   g_list_free (pending_flush_attempts);
1430   g_clear_error (&error);
1431
1432   _g_dbus_worker_unref (worker);
1433 }
1434
1435 /* called in private thread shared by all GDBusConnection instances
1436  *
1437  * write-lock is not held on entry
1438  * output_pending must be PENDING_NONE on entry
1439  */
1440 static void
1441 continue_writing (GDBusWorker *worker)
1442 {
1443   MessageToWriteData *data;
1444   FlushAsyncData *flush_async_data;
1445
1446  write_next:
1447   /* we mustn't try to write two things at once */
1448   g_assert (worker->output_pending == PENDING_NONE);
1449
1450   g_mutex_lock (&worker->write_lock);
1451
1452   data = NULL;
1453   flush_async_data = NULL;
1454
1455   /* if we want to close the connection, that takes precedence */
1456   if (worker->pending_close_attempts != NULL)
1457     {
1458       worker->close_expected = TRUE;
1459       worker->output_pending = PENDING_CLOSE;
1460
1461       g_io_stream_close_async (worker->stream, G_PRIORITY_DEFAULT,
1462                                NULL, iostream_close_cb,
1463                                _g_dbus_worker_ref (worker));
1464     }
1465   else
1466     {
1467       flush_async_data = prepare_flush_unlocked (worker);
1468
1469       if (flush_async_data == NULL)
1470         {
1471           data = g_queue_pop_head (worker->write_queue);
1472
1473           if (data != NULL)
1474             worker->output_pending = PENDING_WRITE;
1475         }
1476     }
1477
1478   g_mutex_unlock (&worker->write_lock);
1479
1480   /* Note that write_lock is only used for protecting the @write_queue
1481    * and @output_pending fields of the GDBusWorker struct ... which we
1482    * need to modify from arbitrary threads in _g_dbus_worker_send_message().
1483    *
1484    * Therefore, it's fine to drop it here when calling back into user
1485    * code and then writing the message out onto the GIOStream since this
1486    * function only runs on the worker thread.
1487    */
1488
1489   if (flush_async_data != NULL)
1490     {
1491       start_flush (flush_async_data);
1492       g_assert (data == NULL);
1493     }
1494   else if (data != NULL)
1495     {
1496       GDBusMessage *old_message;
1497       guchar *new_blob;
1498       gsize new_blob_size;
1499       GError *error;
1500
1501       old_message = data->message;
1502       data->message = _g_dbus_worker_emit_message_about_to_be_sent (worker, data->message);
1503       if (data->message == old_message)
1504         {
1505           /* filters had no effect - do nothing */
1506         }
1507       else if (data->message == NULL)
1508         {
1509           /* filters dropped message */
1510           g_mutex_lock (&worker->write_lock);
1511           worker->output_pending = PENDING_NONE;
1512           g_mutex_unlock (&worker->write_lock);
1513           message_to_write_data_free (data);
1514           goto write_next;
1515         }
1516       else
1517         {
1518           /* filters altered the message -> reencode */
1519           error = NULL;
1520           new_blob = g_dbus_message_to_blob (data->message,
1521                                              &new_blob_size,
1522                                              worker->capabilities,
1523                                              &error);
1524           if (new_blob == NULL)
1525             {
1526               /* if filter make the GDBusMessage unencodeable, just complain on stderr and send
1527                * the old message instead
1528                */
1529               g_warning ("Error encoding GDBusMessage with serial %d altered by filter function: %s",
1530                          g_dbus_message_get_serial (data->message),
1531                          error->message);
1532               g_error_free (error);
1533             }
1534           else
1535             {
1536               g_free (data->blob);
1537               data->blob = (gchar *) new_blob;
1538               data->blob_size = new_blob_size;
1539             }
1540         }
1541
1542       write_message_async (worker,
1543                            data,
1544                            write_message_cb,
1545                            data);
1546     }
1547 }
1548
1549 /* called in private thread shared by all GDBusConnection instances
1550  *
1551  * write-lock is not held on entry
1552  * output_pending may be anything
1553  */
1554 static gboolean
1555 continue_writing_in_idle_cb (gpointer user_data)
1556 {
1557   GDBusWorker *worker = user_data;
1558
1559   /* Because this is the worker thread, we can read this struct member
1560    * without holding the lock: no other thread ever modifies it.
1561    */
1562   if (worker->output_pending == PENDING_NONE)
1563     continue_writing (worker);
1564
1565   return FALSE;
1566 }
1567
1568 /*
1569  * @write_data: (transfer full) (allow-none):
1570  * @flush_data: (transfer full) (allow-none):
1571  * @close_data: (transfer full) (allow-none):
1572  *
1573  * Can be called from any thread
1574  *
1575  * write_lock is held on entry
1576  * output_pending may be anything
1577  */
1578 static void
1579 schedule_writing_unlocked (GDBusWorker        *worker,
1580                            MessageToWriteData *write_data,
1581                            FlushData          *flush_data,
1582                            CloseData          *close_data)
1583 {
1584   if (write_data != NULL)
1585     g_queue_push_tail (worker->write_queue, write_data);
1586
1587   if (flush_data != NULL)
1588     worker->write_pending_flushes = g_list_prepend (worker->write_pending_flushes, flush_data);
1589
1590   if (close_data != NULL)
1591     worker->pending_close_attempts = g_list_prepend (worker->pending_close_attempts,
1592                                                      close_data);
1593
1594   /* If we had output pending, the next bit of output will happen
1595    * automatically when it finishes, so we only need to do this
1596    * if nothing was pending.
1597    *
1598    * The idle callback will re-check that output_pending is still
1599    * PENDING_NONE, to guard against output starting before the idle.
1600    */
1601   if (worker->output_pending == PENDING_NONE)
1602     {
1603       GSource *idle_source;
1604       idle_source = g_idle_source_new ();
1605       g_source_set_priority (idle_source, G_PRIORITY_DEFAULT);
1606       g_source_set_callback (idle_source,
1607                              continue_writing_in_idle_cb,
1608                              _g_dbus_worker_ref (worker),
1609                              (GDestroyNotify) _g_dbus_worker_unref);
1610       g_source_attach (idle_source, worker->shared_thread_data->context);
1611       g_source_unref (idle_source);
1612     }
1613 }
1614
1615 /* ---------------------------------------------------------------------------------------------------- */
1616
1617 /* can be called from any thread - steals blob
1618  *
1619  * write_lock is not held on entry
1620  * output_pending may be anything
1621  */
1622 void
1623 _g_dbus_worker_send_message (GDBusWorker    *worker,
1624                              GDBusMessage   *message,
1625                              gchar          *blob,
1626                              gsize           blob_len)
1627 {
1628   MessageToWriteData *data;
1629
1630   g_return_if_fail (G_IS_DBUS_MESSAGE (message));
1631   g_return_if_fail (blob != NULL);
1632   g_return_if_fail (blob_len > 16);
1633
1634   data = g_new0 (MessageToWriteData, 1);
1635   data->worker = _g_dbus_worker_ref (worker);
1636   data->message = g_object_ref (message);
1637   data->blob = blob; /* steal! */
1638   data->blob_size = blob_len;
1639
1640   g_mutex_lock (&worker->write_lock);
1641   schedule_writing_unlocked (worker, data, NULL, NULL);
1642   g_mutex_unlock (&worker->write_lock);
1643 }
1644
1645 /* ---------------------------------------------------------------------------------------------------- */
1646
1647 GDBusWorker *
1648 _g_dbus_worker_new (GIOStream                              *stream,
1649                     GDBusCapabilityFlags                    capabilities,
1650                     gboolean                                initially_frozen,
1651                     GDBusWorkerMessageReceivedCallback      message_received_callback,
1652                     GDBusWorkerMessageAboutToBeSentCallback message_about_to_be_sent_callback,
1653                     GDBusWorkerDisconnectedCallback         disconnected_callback,
1654                     gpointer                                user_data)
1655 {
1656   GDBusWorker *worker;
1657   GSource *idle_source;
1658
1659   g_return_val_if_fail (G_IS_IO_STREAM (stream), NULL);
1660   g_return_val_if_fail (message_received_callback != NULL, NULL);
1661   g_return_val_if_fail (message_about_to_be_sent_callback != NULL, NULL);
1662   g_return_val_if_fail (disconnected_callback != NULL, NULL);
1663
1664   worker = g_new0 (GDBusWorker, 1);
1665   worker->ref_count = 1;
1666
1667   g_mutex_init (&worker->read_lock);
1668   worker->message_received_callback = message_received_callback;
1669   worker->message_about_to_be_sent_callback = message_about_to_be_sent_callback;
1670   worker->disconnected_callback = disconnected_callback;
1671   worker->user_data = user_data;
1672   worker->stream = g_object_ref (stream);
1673   worker->capabilities = capabilities;
1674   worker->cancellable = g_cancellable_new ();
1675   worker->output_pending = PENDING_NONE;
1676
1677   worker->frozen = initially_frozen;
1678   worker->received_messages_while_frozen = g_queue_new ();
1679
1680   g_mutex_init (&worker->write_lock);
1681   worker->write_queue = g_queue_new ();
1682
1683   if (G_IS_SOCKET_CONNECTION (worker->stream))
1684     worker->socket = g_socket_connection_get_socket (G_SOCKET_CONNECTION (worker->stream));
1685
1686   if (G_IS_KDBUS_CONNECTION (worker->stream))
1687     worker->kdbus = g_kdbus_connection_get_kdbus (G_KDBUS_CONNECTION (worker->stream));
1688
1689   worker->shared_thread_data = _g_dbus_shared_thread_ref ();
1690
1691   /* begin reading */
1692   idle_source = g_idle_source_new ();
1693   g_source_set_priority (idle_source, G_PRIORITY_DEFAULT);
1694   g_source_set_callback (idle_source,
1695                          _g_dbus_worker_do_initial_read,
1696                          _g_dbus_worker_ref (worker),
1697                          (GDestroyNotify) _g_dbus_worker_unref);
1698   g_source_attach (idle_source, worker->shared_thread_data->context);
1699   g_source_unref (idle_source);
1700
1701   return worker;
1702 }
1703
1704 /* ---------------------------------------------------------------------------------------------------- */
1705
1706 /* can be called from any thread
1707  *
1708  * write_lock is not held on entry
1709  * output_pending may be anything
1710  */
1711 void
1712 _g_dbus_worker_close (GDBusWorker         *worker,
1713                       GCancellable        *cancellable,
1714                       GSimpleAsyncResult  *result)
1715 {
1716   CloseData *close_data;
1717
1718   close_data = g_slice_new0 (CloseData);
1719   close_data->worker = _g_dbus_worker_ref (worker);
1720   close_data->cancellable =
1721       (cancellable == NULL ? NULL : g_object_ref (cancellable));
1722   close_data->result = (result == NULL ? NULL : g_object_ref (result));
1723
1724   /* Don't set worker->close_expected here - we're in the wrong thread.
1725    * It'll be set before the actual close happens.
1726    */
1727   g_cancellable_cancel (worker->cancellable);
1728   g_mutex_lock (&worker->write_lock);
1729   schedule_writing_unlocked (worker, NULL, NULL, close_data);
1730   g_mutex_unlock (&worker->write_lock);
1731 }
1732
1733 /* This can be called from any thread - frees worker. Note that
1734  * callbacks might still happen if called from another thread than the
1735  * worker - use your own synchronization primitive in the callbacks.
1736  *
1737  * write_lock is not held on entry
1738  * output_pending may be anything
1739  */
1740 void
1741 _g_dbus_worker_stop (GDBusWorker *worker)
1742 {
1743   g_atomic_int_set (&worker->stopped, TRUE);
1744
1745   /* Cancel any pending operations and schedule a close of the underlying I/O
1746    * stream in the worker thread
1747    */
1748   _g_dbus_worker_close (worker, NULL, NULL);
1749
1750   /* _g_dbus_worker_close holds a ref until after an idle in the worker
1751    * thread has run, so we no longer need to unref in an idle like in
1752    * commit 322e25b535
1753    */
1754   _g_dbus_worker_unref (worker);
1755 }
1756
1757 /* ---------------------------------------------------------------------------------------------------- */
1758
1759 /* can be called from any thread (except the worker thread) - blocks
1760  * calling thread until all queued outgoing messages are written and
1761  * the transport has been flushed
1762  *
1763  * write_lock is not held on entry
1764  * output_pending may be anything
1765  */
1766 gboolean
1767 _g_dbus_worker_flush_sync (GDBusWorker    *worker,
1768                            GCancellable   *cancellable,
1769                            GError        **error)
1770 {
1771   gboolean ret;
1772   FlushData *data;
1773   guint64 pending_writes;
1774
1775   data = NULL;
1776   ret = TRUE;
1777
1778   g_mutex_lock (&worker->write_lock);
1779
1780   /* if the queue is empty, no write is in-flight and we haven't written
1781    * anything since the last flush, then there's nothing to wait for
1782    */
1783   pending_writes = g_queue_get_length (worker->write_queue);
1784
1785   /* if a write is in-flight, we shouldn't be satisfied until the first
1786    * flush operation that follows it
1787    */
1788   if (worker->output_pending == PENDING_WRITE)
1789     pending_writes += 1;
1790
1791   if (pending_writes > 0 ||
1792       worker->write_num_messages_written != worker->write_num_messages_flushed)
1793     {
1794       data = g_new0 (FlushData, 1);
1795       g_mutex_init (&data->mutex);
1796       g_cond_init (&data->cond);
1797       data->number_to_wait_for = worker->write_num_messages_written + pending_writes;
1798       g_mutex_lock (&data->mutex);
1799
1800       schedule_writing_unlocked (worker, NULL, data, NULL);
1801     }
1802   g_mutex_unlock (&worker->write_lock);
1803
1804   if (data != NULL)
1805     {
1806       g_cond_wait (&data->cond, &data->mutex);
1807       g_mutex_unlock (&data->mutex);
1808
1809       /* note:the element is removed from worker->write_pending_flushes in flush_cb() above */
1810       g_cond_clear (&data->cond);
1811       g_mutex_clear (&data->mutex);
1812       if (data->error != NULL)
1813         {
1814           ret = FALSE;
1815           g_propagate_error (error, data->error);
1816         }
1817       g_free (data);
1818     }
1819
1820   return ret;
1821 }
1822
1823 /* ---------------------------------------------------------------------------------------------------- */
1824
1825 #define G_DBUS_DEBUG_AUTHENTICATION (1<<0)
1826 #define G_DBUS_DEBUG_TRANSPORT      (1<<1)
1827 #define G_DBUS_DEBUG_MESSAGE        (1<<2)
1828 #define G_DBUS_DEBUG_PAYLOAD        (1<<3)
1829 #define G_DBUS_DEBUG_CALL           (1<<4)
1830 #define G_DBUS_DEBUG_SIGNAL         (1<<5)
1831 #define G_DBUS_DEBUG_INCOMING       (1<<6)
1832 #define G_DBUS_DEBUG_RETURN         (1<<7)
1833 #define G_DBUS_DEBUG_EMISSION       (1<<8)
1834 #define G_DBUS_DEBUG_ADDRESS        (1<<9)
1835
1836 static gint _gdbus_debug_flags = 0;
1837
1838 gboolean
1839 _g_dbus_debug_authentication (void)
1840 {
1841   _g_dbus_initialize ();
1842   return (_gdbus_debug_flags & G_DBUS_DEBUG_AUTHENTICATION) != 0;
1843 }
1844
1845 gboolean
1846 _g_dbus_debug_transport (void)
1847 {
1848   _g_dbus_initialize ();
1849   return (_gdbus_debug_flags & G_DBUS_DEBUG_TRANSPORT) != 0;
1850 }
1851
1852 gboolean
1853 _g_dbus_debug_message (void)
1854 {
1855   _g_dbus_initialize ();
1856   return (_gdbus_debug_flags & G_DBUS_DEBUG_MESSAGE) != 0;
1857 }
1858
1859 gboolean
1860 _g_dbus_debug_payload (void)
1861 {
1862   _g_dbus_initialize ();
1863   return (_gdbus_debug_flags & G_DBUS_DEBUG_PAYLOAD) != 0;
1864 }
1865
1866 gboolean
1867 _g_dbus_debug_call (void)
1868 {
1869   _g_dbus_initialize ();
1870   return (_gdbus_debug_flags & G_DBUS_DEBUG_CALL) != 0;
1871 }
1872
1873 gboolean
1874 _g_dbus_debug_signal (void)
1875 {
1876   _g_dbus_initialize ();
1877   return (_gdbus_debug_flags & G_DBUS_DEBUG_SIGNAL) != 0;
1878 }
1879
1880 gboolean
1881 _g_dbus_debug_incoming (void)
1882 {
1883   _g_dbus_initialize ();
1884   return (_gdbus_debug_flags & G_DBUS_DEBUG_INCOMING) != 0;
1885 }
1886
1887 gboolean
1888 _g_dbus_debug_return (void)
1889 {
1890   _g_dbus_initialize ();
1891   return (_gdbus_debug_flags & G_DBUS_DEBUG_RETURN) != 0;
1892 }
1893
1894 gboolean
1895 _g_dbus_debug_emission (void)
1896 {
1897   _g_dbus_initialize ();
1898   return (_gdbus_debug_flags & G_DBUS_DEBUG_EMISSION) != 0;
1899 }
1900
1901 gboolean
1902 _g_dbus_debug_address (void)
1903 {
1904   _g_dbus_initialize ();
1905   return (_gdbus_debug_flags & G_DBUS_DEBUG_ADDRESS) != 0;
1906 }
1907
1908 G_LOCK_DEFINE_STATIC (print_lock);
1909
1910 void
1911 _g_dbus_debug_print_lock (void)
1912 {
1913   G_LOCK (print_lock);
1914 }
1915
1916 void
1917 _g_dbus_debug_print_unlock (void)
1918 {
1919   G_UNLOCK (print_lock);
1920 }
1921
1922 /*
1923  * _g_dbus_initialize:
1924  *
1925  * Does various one-time init things such as
1926  *
1927  *  - registering the G_DBUS_ERROR error domain
1928  *  - parses the G_DBUS_DEBUG environment variable
1929  */
1930 void
1931 _g_dbus_initialize (void)
1932 {
1933   static volatile gsize initialized = 0;
1934
1935   if (g_once_init_enter (&initialized))
1936     {
1937       volatile GQuark g_dbus_error_domain;
1938       const gchar *debug;
1939
1940       g_dbus_error_domain = G_DBUS_ERROR;
1941       (g_dbus_error_domain); /* To avoid -Wunused-but-set-variable */
1942
1943       debug = g_getenv ("G_DBUS_DEBUG");
1944       if (debug != NULL)
1945         {
1946           const GDebugKey keys[] = {
1947             { "authentication", G_DBUS_DEBUG_AUTHENTICATION },
1948             { "transport",      G_DBUS_DEBUG_TRANSPORT      },
1949             { "message",        G_DBUS_DEBUG_MESSAGE        },
1950             { "payload",        G_DBUS_DEBUG_PAYLOAD        },
1951             { "call",           G_DBUS_DEBUG_CALL           },
1952             { "signal",         G_DBUS_DEBUG_SIGNAL         },
1953             { "incoming",       G_DBUS_DEBUG_INCOMING       },
1954             { "return",         G_DBUS_DEBUG_RETURN         },
1955             { "emission",       G_DBUS_DEBUG_EMISSION       },
1956             { "address",        G_DBUS_DEBUG_ADDRESS        }
1957           };
1958
1959           _gdbus_debug_flags = g_parse_debug_string (debug, keys, G_N_ELEMENTS (keys));
1960           if (_gdbus_debug_flags & G_DBUS_DEBUG_PAYLOAD)
1961             _gdbus_debug_flags |= G_DBUS_DEBUG_MESSAGE;
1962         }
1963
1964       g_once_init_leave (&initialized, 1);
1965     }
1966 }
1967
1968 /* ---------------------------------------------------------------------------------------------------- */
1969
1970 GVariantType *
1971 _g_dbus_compute_complete_signature (GDBusArgInfo **args)
1972 {
1973   const GVariantType *arg_types[256];
1974   guint n;
1975
1976   if (args)
1977     for (n = 0; args[n] != NULL; n++)
1978       {
1979         /* DBus places a hard limit of 255 on signature length.
1980          * therefore number of args must be less than 256.
1981          */
1982         g_assert (n < 256);
1983
1984         arg_types[n] = G_VARIANT_TYPE (args[n]->signature);
1985
1986         if G_UNLIKELY (arg_types[n] == NULL)
1987           return NULL;
1988       }
1989   else
1990     n = 0;
1991
1992   return g_variant_type_new_tuple (arg_types, n);
1993 }
1994
1995 /* ---------------------------------------------------------------------------------------------------- */
1996
1997 #ifdef G_OS_WIN32
1998
1999 extern BOOL WINAPI ConvertSidToStringSidA (PSID Sid, LPSTR *StringSid);
2000
2001 gchar *
2002 _g_dbus_win32_get_user_sid (void)
2003 {
2004   HANDLE h;
2005   TOKEN_USER *user;
2006   DWORD token_information_len;
2007   PSID psid;
2008   gchar *sid;
2009   gchar *ret;
2010
2011   ret = NULL;
2012   user = NULL;
2013   h = INVALID_HANDLE_VALUE;
2014
2015   if (!OpenProcessToken (GetCurrentProcess (), TOKEN_QUERY, &h))
2016     {
2017       g_warning ("OpenProcessToken failed with error code %d", (gint) GetLastError ());
2018       goto out;
2019     }
2020
2021   /* Get length of buffer */
2022   token_information_len = 0;
2023   if (!GetTokenInformation (h, TokenUser, NULL, 0, &token_information_len))
2024     {
2025       if (GetLastError () != ERROR_INSUFFICIENT_BUFFER)
2026         {
2027           g_warning ("GetTokenInformation() failed with error code %d", (gint) GetLastError ());
2028           goto out;
2029         }
2030     }
2031   user = g_malloc (token_information_len);
2032   if (!GetTokenInformation (h, TokenUser, user, token_information_len, &token_information_len))
2033     {
2034       g_warning ("GetTokenInformation() failed with error code %d", (gint) GetLastError ());
2035       goto out;
2036     }
2037
2038   psid = user->User.Sid;
2039   if (!IsValidSid (psid))
2040     {
2041       g_warning ("Invalid SID");
2042       goto out;
2043     }
2044
2045   if (!ConvertSidToStringSidA (psid, &sid))
2046     {
2047       g_warning ("Invalid SID");
2048       goto out;
2049     }
2050
2051   ret = g_strdup (sid);
2052   LocalFree (sid);
2053
2054 out:
2055   g_free (user);
2056   if (h != INVALID_HANDLE_VALUE)
2057     CloseHandle (h);
2058   return ret;
2059 }
2060 #endif
2061
2062 /* ---------------------------------------------------------------------------------------------------- */
2063
2064 gchar *
2065 _g_dbus_get_machine_id (GError **error)
2066 {
2067 #ifdef G_OS_WIN32
2068   HW_PROFILE_INFOA info;
2069   char *src, *dest, *res;
2070   int i;
2071
2072   if (!GetCurrentHwProfileA (&info))
2073     {
2074       char *message = g_win32_error_message (GetLastError ());
2075       g_set_error (error,
2076                    G_IO_ERROR,
2077                    G_IO_ERROR_FAILED,
2078                    _("Unable to get Hardware profile: %s"), message);
2079       g_free (message);
2080       return NULL;
2081     }
2082
2083   /* Form: {12340001-4980-1920-6788-123456789012} */
2084   src = &info.szHwProfileGuid[0];
2085
2086   res = g_malloc (32+1);
2087   dest = res;
2088
2089   src++; /* Skip { */
2090   for (i = 0; i < 8; i++)
2091     *dest++ = *src++;
2092   src++; /* Skip - */
2093   for (i = 0; i < 4; 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 < 12; i++)
2103     *dest++ = *src++;
2104   *dest = 0;
2105
2106   return res;
2107 #else
2108   gchar *ret;
2109   GError *first_error;
2110   /* TODO: use PACKAGE_LOCALSTATEDIR ? */
2111   ret = NULL;
2112   first_error = NULL;
2113   if (!g_file_get_contents ("/var/lib/dbus/machine-id",
2114                             &ret,
2115                             NULL,
2116                             &first_error) &&
2117       !g_file_get_contents ("/etc/machine-id",
2118                             &ret,
2119                             NULL,
2120                             NULL))
2121     {
2122       g_propagate_prefixed_error (error, first_error,
2123                                   _("Unable to load /var/lib/dbus/machine-id or /etc/machine-id: "));
2124     }
2125   else
2126     {
2127       /* ignore the error from the first try, if any */
2128       g_clear_error (&first_error);
2129       /* TODO: validate value */
2130       g_strstrip (ret);
2131     }
2132   return ret;
2133 #endif
2134 }
2135
2136 /* ---------------------------------------------------------------------------------------------------- */
2137
2138 gchar *
2139 _g_dbus_enum_to_string (GType enum_type, gint value)
2140 {
2141   gchar *ret;
2142   GEnumClass *klass;
2143   GEnumValue *enum_value;
2144
2145   klass = g_type_class_ref (enum_type);
2146   enum_value = g_enum_get_value (klass, value);
2147   if (enum_value != NULL)
2148     ret = g_strdup (enum_value->value_nick);
2149   else
2150     ret = g_strdup_printf ("unknown (value %d)", value);
2151   g_type_class_unref (klass);
2152   return ret;
2153 }
2154
2155 /* ---------------------------------------------------------------------------------------------------- */
2156
2157 static void
2158 write_message_print_transport_debug (gssize bytes_written,
2159                                      MessageToWriteData *data)
2160 {
2161   if (G_LIKELY (!_g_dbus_debug_transport ()))
2162     goto out;
2163
2164   _g_dbus_debug_print_lock ();
2165   g_print ("========================================================================\n"
2166            "GDBus-debug:Transport:\n"
2167            "  >>>> WROTE %" G_GSIZE_FORMAT " bytes of message with serial %d and\n"
2168            "       size %" G_GSIZE_FORMAT " from offset %" G_GSIZE_FORMAT " on a %s\n",
2169            bytes_written,
2170            g_dbus_message_get_serial (data->message),
2171            data->blob_size,
2172            data->total_written,
2173            g_type_name (G_TYPE_FROM_INSTANCE (g_io_stream_get_output_stream (data->worker->stream))));
2174   _g_dbus_debug_print_unlock ();
2175  out:
2176   ;
2177 }
2178
2179 /* ---------------------------------------------------------------------------------------------------- */
2180
2181 static void
2182 read_message_print_transport_debug (gssize bytes_read,
2183                                     GDBusWorker *worker)
2184 {
2185   gsize size;
2186   gint32 serial;
2187   gint32 message_length;
2188
2189   if (G_LIKELY (!_g_dbus_debug_transport ()))
2190     goto out;
2191
2192   size = bytes_read + worker->read_buffer_cur_size;
2193   serial = 0;
2194   message_length = 0;
2195   if (size >= 16)
2196     message_length = g_dbus_message_bytes_needed ((guchar *) worker->read_buffer, size, NULL);
2197   if (size >= 1)
2198     {
2199       switch (worker->read_buffer[0])
2200         {
2201         case 'l':
2202           if (size >= 12)
2203             serial = GUINT32_FROM_LE (((guint32 *) worker->read_buffer)[2]);
2204           break;
2205         case 'B':
2206           if (size >= 12)
2207             serial = GUINT32_FROM_BE (((guint32 *) worker->read_buffer)[2]);
2208           break;
2209         default:
2210           /* an error will be set elsewhere if this happens */
2211           goto out;
2212         }
2213     }
2214
2215     _g_dbus_debug_print_lock ();
2216   g_print ("========================================================================\n"
2217            "GDBus-debug:Transport:\n"
2218            "  <<<< READ %" G_GSIZE_FORMAT " bytes of message with serial %d and\n"
2219            "       size %d to offset %" G_GSIZE_FORMAT " from a %s\n",
2220            bytes_read,
2221            serial,
2222            message_length,
2223            worker->read_buffer_cur_size,
2224            g_type_name (G_TYPE_FROM_INSTANCE (g_io_stream_get_input_stream (worker->stream))));
2225   _g_dbus_debug_print_unlock ();
2226  out:
2227   ;
2228 }
2229
2230 /* ---------------------------------------------------------------------------------------------------- */
2231
2232 gboolean
2233 _g_signal_accumulator_false_handled (GSignalInvocationHint *ihint,
2234                                      GValue                *return_accu,
2235                                      const GValue          *handler_return,
2236                                      gpointer               dummy)
2237 {
2238   gboolean continue_emission;
2239   gboolean signal_return;
2240
2241   signal_return = g_value_get_boolean (handler_return);
2242   g_value_set_boolean (return_accu, signal_return);
2243   continue_emission = signal_return;
2244
2245   return continue_emission;
2246 }