Bug 619142 – Build fixes
[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 "giostream.h"
41 #include "gsocketcontrolmessage.h"
42 #include "gsocketconnection.h"
43
44 #ifdef G_OS_UNIX
45 #include "gunixfdmessage.h"
46 #include "gunixconnection.h"
47 #include "gunixcredentialsmessage.h"
48 #endif
49
50 #ifdef G_OS_WIN32
51 #include <windows.h>
52 #endif
53
54 #include "glibintl.h"
55 #include "gioalias.h"
56
57 /* ---------------------------------------------------------------------------------------------------- */
58
59 static gchar *
60 hexdump (const gchar *data, gsize len, guint indent)
61 {
62  guint n, m;
63  GString *ret;
64
65  ret = g_string_new (NULL);
66
67  for (n = 0; n < len; n += 16)
68    {
69      g_string_append_printf (ret, "%*s%04x: ", indent, "", n);
70
71      for (m = n; m < n + 16; m++)
72        {
73          if (m > n && (m%4) == 0)
74            g_string_append_c (ret, ' ');
75          if (m < len)
76            g_string_append_printf (ret, "%02x ", (guchar) data[m]);
77          else
78            g_string_append (ret, "   ");
79        }
80
81      g_string_append (ret, "   ");
82
83      for (m = n; m < len && m < n + 16; m++)
84        g_string_append_c (ret, g_ascii_isprint (data[m]) ? data[m] : '.');
85
86      g_string_append_c (ret, '\n');
87    }
88
89  return g_string_free (ret, FALSE);
90 }
91
92 /* ---------------------------------------------------------------------------------------------------- */
93
94 /* Unfortunately ancillary messages are discarded when reading from a
95  * socket using the GSocketInputStream abstraction. So we provide a
96  * very GInputStream-ish API that uses GSocket in this case (very
97  * similar to GSocketInputStream).
98  */
99
100 typedef struct
101 {
102   GSocket *socket;
103   GCancellable *cancellable;
104
105   void *buffer;
106   gsize count;
107
108   GSocketControlMessage ***messages;
109   gint *num_messages;
110
111   GSimpleAsyncResult *simple;
112
113   gboolean from_mainloop;
114 } ReadWithControlData;
115
116 static void
117 read_with_control_data_free (ReadWithControlData *data)
118 {
119   g_object_unref (data->socket);
120   if (data->cancellable != NULL)
121     g_object_unref (data->cancellable);
122   g_free (data);
123 }
124
125 static gboolean
126 _g_socket_read_with_control_messages_ready (GSocket      *socket,
127                                             GIOCondition  condition,
128                                             gpointer      user_data)
129 {
130   ReadWithControlData *data = user_data;
131   GError *error;
132   gssize result;
133   GInputVector vector;
134
135   error = NULL;
136   vector.buffer = data->buffer;
137   vector.size = data->count;
138   result = g_socket_receive_message (data->socket,
139                                      NULL, /* address */
140                                      &vector,
141                                      1,
142                                      data->messages,
143                                      data->num_messages,
144                                      NULL,
145                                      data->cancellable,
146                                      &error);
147   if (result >= 0)
148     {
149       g_simple_async_result_set_op_res_gssize (data->simple, result);
150     }
151   else
152     {
153       g_assert (error != NULL);
154       g_simple_async_result_set_from_error (data->simple, error);
155       g_error_free (error);
156     }
157
158   if (data->from_mainloop)
159     g_simple_async_result_complete (data->simple);
160   else
161     g_simple_async_result_complete_in_idle (data->simple);
162
163   return FALSE;
164 }
165
166 static void
167 _g_socket_read_with_control_messages (GSocket                 *socket,
168                                       void                    *buffer,
169                                       gsize                    count,
170                                       GSocketControlMessage ***messages,
171                                       gint                    *num_messages,
172                                       gint                     io_priority,
173                                       GCancellable            *cancellable,
174                                       GAsyncReadyCallback      callback,
175                                       gpointer                 user_data)
176 {
177   ReadWithControlData *data;
178
179   data = g_new0 (ReadWithControlData, 1);
180   data->socket = g_object_ref (socket);
181   data->cancellable = cancellable != NULL ? g_object_ref (cancellable) : NULL;
182   data->buffer = buffer;
183   data->count = count;
184   data->messages = messages;
185   data->num_messages = num_messages;
186
187   data->simple = g_simple_async_result_new (G_OBJECT (socket),
188                                             callback,
189                                             user_data,
190                                             _g_socket_read_with_control_messages);
191
192   if (!g_socket_condition_check (socket, G_IO_IN))
193     {
194       GSource *source;
195       data->from_mainloop = TRUE;
196       source = g_socket_create_source (data->socket,
197                                        G_IO_IN | G_IO_HUP | G_IO_ERR,
198                                        cancellable);
199       g_source_set_callback (source,
200                              (GSourceFunc) _g_socket_read_with_control_messages_ready,
201                              data,
202                              (GDestroyNotify) read_with_control_data_free);
203       g_source_attach (source, g_main_context_get_thread_default ());
204       g_source_unref (source);
205     }
206   else
207     {
208       _g_socket_read_with_control_messages_ready (data->socket, G_IO_IN, data);
209       read_with_control_data_free (data);
210     }
211 }
212
213 static gssize
214 _g_socket_read_with_control_messages_finish (GSocket       *socket,
215                                              GAsyncResult  *result,
216                                              GError       **error)
217 {
218   GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
219
220   g_return_val_if_fail (G_IS_SOCKET (socket), -1);
221   g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == _g_socket_read_with_control_messages);
222
223   if (g_simple_async_result_propagate_error (simple, error))
224       return -1;
225   else
226     return g_simple_async_result_get_op_res_gssize (simple);
227 }
228
229 /* ---------------------------------------------------------------------------------------------------- */
230
231 G_LOCK_DEFINE_STATIC (shared_thread_lock);
232
233 typedef struct
234 {
235   gint num_users;
236   GThread *thread;
237   GMainContext *context;
238   GMainLoop *loop;
239 } SharedThreadData;
240
241 static SharedThreadData *shared_thread_data = NULL;
242
243 static gpointer
244 shared_thread_func (gpointer data)
245 {
246   g_main_context_push_thread_default (shared_thread_data->context);
247   g_main_loop_run (shared_thread_data->loop);
248   g_main_context_pop_thread_default (shared_thread_data->context);
249   return NULL;
250 }
251
252 typedef void (*GDBusSharedThreadFunc) (gpointer user_data);
253
254 typedef struct
255 {
256   GDBusSharedThreadFunc func;
257   gpointer              user_data;
258   gboolean              done;
259 } CallerData;
260
261 static gboolean
262 invoke_caller (gpointer user_data)
263 {
264   CallerData *data = user_data;
265   data->func (data->user_data);
266   data->done = TRUE;
267   return FALSE;
268 }
269
270 static void
271 _g_dbus_shared_thread_ref (GDBusSharedThreadFunc func,
272                            gpointer              user_data)
273 {
274   GError *error;
275   GSource *idle_source;
276   CallerData *data;
277
278   G_LOCK (shared_thread_lock);
279
280   if (shared_thread_data != NULL)
281     {
282       shared_thread_data->num_users += 1;
283       goto have_thread;
284     }
285
286   shared_thread_data = g_new0 (SharedThreadData, 1);
287   shared_thread_data->num_users = 1;
288
289   error = NULL;
290   shared_thread_data->context = g_main_context_new ();
291   shared_thread_data->loop = g_main_loop_new (shared_thread_data->context, FALSE);
292   shared_thread_data->thread = g_thread_create (shared_thread_func,
293                                                 NULL,
294                                                 TRUE,
295                                                 &error);
296   g_assert_no_error (error);
297
298  have_thread:
299
300   data = g_new0 (CallerData, 1);
301   data->func = func;
302   data->user_data = user_data;
303   data->done = FALSE;
304
305   idle_source = g_idle_source_new ();
306   g_source_set_priority (idle_source, G_PRIORITY_DEFAULT);
307   g_source_set_callback (idle_source,
308                          invoke_caller,
309                          data,
310                          NULL);
311   g_source_attach (idle_source, shared_thread_data->context);
312   g_source_unref (idle_source);
313
314   /* wait for the user code to run.. hmm.. probably use a condition variable instead */
315   while (!data->done)
316     g_thread_yield ();
317
318   g_free (data);
319
320   G_UNLOCK (shared_thread_lock);
321 }
322
323 static void
324 _g_dbus_shared_thread_unref (void)
325 {
326   /* TODO: actually destroy the shared thread here */
327 #if 0
328   G_LOCK (shared_thread_lock);
329   g_assert (shared_thread_data != NULL);
330   shared_thread_data->num_users -= 1;
331   if (shared_thread_data->num_users == 0)
332     {
333       g_main_loop_quit (shared_thread_data->loop);
334       //g_thread_join (shared_thread_data->thread);
335       g_main_loop_unref (shared_thread_data->loop);
336       g_main_context_unref (shared_thread_data->context);
337       g_free (shared_thread_data);
338       shared_thread_data = NULL;
339       G_UNLOCK (shared_thread_lock);
340     }
341   else
342     {
343       G_UNLOCK (shared_thread_lock);
344     }
345 #endif
346 }
347
348 /* ---------------------------------------------------------------------------------------------------- */
349
350 struct GDBusWorker
351 {
352   volatile gint                       ref_count;
353   gboolean                            stopped;
354   GIOStream                          *stream;
355   GDBusCapabilityFlags                capabilities;
356   GCancellable                       *cancellable;
357   GDBusWorkerMessageReceivedCallback  message_received_callback;
358   GDBusWorkerDisconnectedCallback     disconnected_callback;
359   gpointer                            user_data;
360
361   GThread                            *thread;
362
363   /* if not NULL, stream is GSocketConnection */
364   GSocket *socket;
365
366   /* used for reading */
367   GMutex                             *read_lock;
368   gchar                              *read_buffer;
369   gsize                               read_buffer_allocated_size;
370   gsize                               read_buffer_cur_size;
371   gsize                               read_buffer_bytes_wanted;
372   GUnixFDList                        *read_fd_list;
373   GSocketControlMessage             **read_ancillary_messages;
374   gint                                read_num_ancillary_messages;
375
376   /* used for writing */
377   GMutex                             *write_lock;
378   GQueue                             *write_queue;
379   gboolean                            write_is_pending;
380 };
381
382 struct _MessageToWriteData ;
383 typedef struct _MessageToWriteData MessageToWriteData;
384
385 static void message_to_write_data_free (MessageToWriteData *data);
386
387 static GDBusWorker *
388 _g_dbus_worker_ref (GDBusWorker *worker)
389 {
390   g_atomic_int_inc (&worker->ref_count);
391   return worker;
392 }
393
394 static void
395 _g_dbus_worker_unref (GDBusWorker *worker)
396 {
397   if (g_atomic_int_dec_and_test (&worker->ref_count))
398     {
399       _g_dbus_shared_thread_unref ();
400
401       g_object_unref (worker->stream);
402
403       g_mutex_free (worker->read_lock);
404       g_object_unref (worker->cancellable);
405       if (worker->read_fd_list != NULL)
406         g_object_unref (worker->read_fd_list);
407
408       g_mutex_free (worker->write_lock);
409       g_queue_foreach (worker->write_queue,
410                        (GFunc) message_to_write_data_free,
411                        NULL);
412       g_queue_free (worker->write_queue);
413       g_free (worker);
414     }
415 }
416
417 static void
418 _g_dbus_worker_emit_disconnected (GDBusWorker  *worker,
419                                   gboolean      remote_peer_vanished,
420                                   GError       *error)
421 {
422   if (!worker->stopped)
423     worker->disconnected_callback (worker, remote_peer_vanished, error, worker->user_data);
424 }
425
426 static void
427 _g_dbus_worker_emit_message (GDBusWorker  *worker,
428                              GDBusMessage *message)
429 {
430   if (!worker->stopped)
431     worker->message_received_callback (worker, message, worker->user_data);
432 }
433
434 static void _g_dbus_worker_do_read_unlocked (GDBusWorker *worker);
435
436 /* called in private thread shared by all GDBusConnection instances (without read-lock held) */
437 static void
438 _g_dbus_worker_do_read_cb (GInputStream  *input_stream,
439                            GAsyncResult  *res,
440                            gpointer       user_data)
441 {
442   GDBusWorker *worker = user_data;
443   GError *error;
444   gssize bytes_read;
445
446   g_mutex_lock (worker->read_lock);
447
448   /* If already stopped, don't even process the reply */
449   if (worker->stopped)
450     goto out;
451
452   error = NULL;
453   if (worker->socket == NULL)
454     bytes_read = g_input_stream_read_finish (g_io_stream_get_input_stream (worker->stream),
455                                              res,
456                                              &error);
457   else
458     bytes_read = _g_socket_read_with_control_messages_finish (worker->socket,
459                                                               res,
460                                                               &error);
461   if (worker->read_num_ancillary_messages > 0)
462     {
463       gint n;
464       for (n = 0; n < worker->read_num_ancillary_messages; n++)
465         {
466           GSocketControlMessage *control_message = G_SOCKET_CONTROL_MESSAGE (worker->read_ancillary_messages[n]);
467
468           if (FALSE)
469             {
470             }
471 #ifdef G_OS_UNIX
472           else if (G_IS_UNIX_FD_MESSAGE (control_message))
473             {
474               GUnixFDMessage *fd_message;
475               gint *fds;
476               gint num_fds;
477
478               fd_message = G_UNIX_FD_MESSAGE (control_message);
479               fds = g_unix_fd_message_steal_fds (fd_message, &num_fds);
480               if (worker->read_fd_list == NULL)
481                 {
482                   worker->read_fd_list = g_unix_fd_list_new_from_array (fds, num_fds);
483                 }
484               else
485                 {
486                   gint n;
487                   for (n = 0; n < num_fds; n++)
488                     {
489                       /* TODO: really want a append_steal() */
490                       g_unix_fd_list_append (worker->read_fd_list, fds[n], NULL);
491                       close (fds[n]);
492                     }
493                 }
494               g_free (fds);
495             }
496           else if (G_IS_UNIX_CREDENTIALS_MESSAGE (control_message))
497             {
498               /* do nothing */
499             }
500 #endif
501           else
502             {
503               if (error == NULL)
504                 {
505                   g_set_error (&error,
506                                G_IO_ERROR,
507                                G_IO_ERROR_FAILED,
508                                "Unexpected ancillary message of type %s received from peer",
509                                g_type_name (G_TYPE_FROM_INSTANCE (control_message)));
510                   _g_dbus_worker_emit_disconnected (worker, TRUE, error);
511                   g_error_free (error);
512                   g_object_unref (control_message);
513                   n++;
514                   while (n < worker->read_num_ancillary_messages)
515                     g_object_unref (worker->read_ancillary_messages[n++]);
516                   g_free (worker->read_ancillary_messages);
517                   goto out;
518                 }
519             }
520           g_object_unref (control_message);
521         }
522       g_free (worker->read_ancillary_messages);
523     }
524
525   if (bytes_read == -1)
526     {
527       _g_dbus_worker_emit_disconnected (worker, TRUE, error);
528       g_error_free (error);
529       goto out;
530     }
531
532 #if 0
533   g_debug ("read %d bytes (is_closed=%d blocking=%d condition=0x%02x) stream %p, %p",
534            (gint) bytes_read,
535            g_socket_is_closed (g_socket_connection_get_socket (G_SOCKET_CONNECTION (worker->stream))),
536            g_socket_get_blocking (g_socket_connection_get_socket (G_SOCKET_CONNECTION (worker->stream))),
537            g_socket_condition_check (g_socket_connection_get_socket (G_SOCKET_CONNECTION (worker->stream)),
538                                      G_IO_IN | G_IO_OUT | G_IO_HUP),
539            worker->stream,
540            worker);
541 #endif
542
543   /* TODO: hmm, hmm... */
544   if (bytes_read == 0)
545     {
546       g_set_error (&error,
547                    G_IO_ERROR,
548                    G_IO_ERROR_FAILED,
549                    "Underlying GIOStream returned 0 bytes on an async read");
550       _g_dbus_worker_emit_disconnected (worker, TRUE, error);
551       g_error_free (error);
552       goto out;
553     }
554
555   worker->read_buffer_cur_size += bytes_read;
556   if (worker->read_buffer_bytes_wanted == worker->read_buffer_cur_size)
557     {
558       /* OK, got what we asked for! */
559       if (worker->read_buffer_bytes_wanted == 16)
560         {
561           gssize message_len;
562           /* OK, got the header - determine how many more bytes are needed */
563           error = NULL;
564           message_len = g_dbus_message_bytes_needed ((guchar *) worker->read_buffer,
565                                                      16,
566                                                      &error);
567           if (message_len == -1)
568             {
569               g_warning ("_g_dbus_worker_do_read_cb: error determing bytes needed: %s", error->message);
570               _g_dbus_worker_emit_disconnected (worker, FALSE, error);
571               g_error_free (error);
572               goto out;
573             }
574
575           worker->read_buffer_bytes_wanted = message_len;
576           _g_dbus_worker_do_read_unlocked (worker);
577         }
578       else
579         {
580           GDBusMessage *message;
581           error = NULL;
582
583           /* TODO: use connection->priv->auth to decode the message */
584
585           message = g_dbus_message_new_from_blob ((guchar *) worker->read_buffer,
586                                                   worker->read_buffer_cur_size,
587                                                   worker->capabilities,
588                                                   &error);
589           if (message == NULL)
590             {
591               _g_dbus_worker_emit_disconnected (worker, FALSE, error);
592               g_error_free (error);
593               goto out;
594             }
595
596 #ifdef G_OS_UNIX
597           if (worker->read_fd_list != NULL)
598             {
599               g_dbus_message_set_unix_fd_list (message, worker->read_fd_list);
600               worker->read_fd_list = NULL;
601             }
602 #endif
603
604           if (G_UNLIKELY (_g_dbus_debug_message ()))
605             {
606               gchar *s;
607               g_print ("========================================================================\n"
608                        "GDBus-debug:Message:\n"
609                        "  <<<< RECEIVED D-Bus message (%" G_GSIZE_FORMAT " bytes)\n",
610                        worker->read_buffer_cur_size);
611               s = g_dbus_message_print (message, 2);
612               g_print ("%s", s);
613               g_free (s);
614               s = hexdump (worker->read_buffer, worker->read_buffer_cur_size, 2);
615               g_print ("%s\n", s);
616               g_free (s);
617             }
618
619           /* yay, got a message, go deliver it */
620           _g_dbus_worker_emit_message (worker, message);
621           g_object_unref (message);
622
623           /* start reading another message! */
624           worker->read_buffer_bytes_wanted = 0;
625           worker->read_buffer_cur_size = 0;
626           _g_dbus_worker_do_read_unlocked (worker);
627         }
628     }
629   else
630     {
631       /* didn't get all the bytes we requested - so repeat the request... */
632       _g_dbus_worker_do_read_unlocked (worker);
633     }
634
635  out:
636   g_mutex_unlock (worker->read_lock);
637
638   /* gives up the reference acquired when calling g_input_stream_read_async() */
639   _g_dbus_worker_unref (worker);
640 }
641
642 /* called in private thread shared by all GDBusConnection instances (with read-lock held) */
643 static void
644 _g_dbus_worker_do_read_unlocked (GDBusWorker *worker)
645 {
646   /* if bytes_wanted is zero, it means start reading a message */
647   if (worker->read_buffer_bytes_wanted == 0)
648     {
649       worker->read_buffer_cur_size = 0;
650       worker->read_buffer_bytes_wanted = 16;
651     }
652
653   /* ensure we have a (big enough) buffer */
654   if (worker->read_buffer == NULL || worker->read_buffer_bytes_wanted > worker->read_buffer_allocated_size)
655     {
656       /* TODO: 4096 is randomly chosen; might want a better chosen default minimum */
657       worker->read_buffer_allocated_size = MAX (worker->read_buffer_bytes_wanted, 4096);
658       worker->read_buffer = g_realloc (worker->read_buffer, worker->read_buffer_allocated_size);
659     }
660
661   if (worker->socket == NULL)
662     g_input_stream_read_async (g_io_stream_get_input_stream (worker->stream),
663                                worker->read_buffer + worker->read_buffer_cur_size,
664                                worker->read_buffer_bytes_wanted - worker->read_buffer_cur_size,
665                                G_PRIORITY_DEFAULT,
666                                worker->cancellable,
667                                (GAsyncReadyCallback) _g_dbus_worker_do_read_cb,
668                                _g_dbus_worker_ref (worker));
669   else
670     {
671       worker->read_ancillary_messages = NULL;
672       worker->read_num_ancillary_messages = 0;
673       _g_socket_read_with_control_messages (worker->socket,
674                                             worker->read_buffer + worker->read_buffer_cur_size,
675                                             worker->read_buffer_bytes_wanted - worker->read_buffer_cur_size,
676                                             &worker->read_ancillary_messages,
677                                             &worker->read_num_ancillary_messages,
678                                             G_PRIORITY_DEFAULT,
679                                             worker->cancellable,
680                                             (GAsyncReadyCallback) _g_dbus_worker_do_read_cb,
681                                             _g_dbus_worker_ref (worker));
682     }
683 }
684
685 /* called in private thread shared by all GDBusConnection instances (without read-lock held) */
686 static void
687 _g_dbus_worker_do_read (GDBusWorker *worker)
688 {
689   g_mutex_lock (worker->read_lock);
690   _g_dbus_worker_do_read_unlocked (worker);
691   g_mutex_unlock (worker->read_lock);
692 }
693
694 /* ---------------------------------------------------------------------------------------------------- */
695
696 struct _MessageToWriteData
697 {
698   GDBusMessage *message;
699   gchar        *blob;
700   gsize         blob_size;
701 };
702
703 static void
704 message_to_write_data_free (MessageToWriteData *data)
705 {
706   g_object_unref (data->message);
707   g_free (data->blob);
708   g_free (data);
709 }
710
711 /* ---------------------------------------------------------------------------------------------------- */
712
713 /* called in private thread shared by all GDBusConnection instances (with write-lock held) */
714 static gboolean
715 write_message (GDBusWorker         *worker,
716                MessageToWriteData  *data,
717                GError             **error)
718 {
719   gboolean ret;
720
721   g_return_val_if_fail (data->blob_size > 16, FALSE);
722
723   ret = FALSE;
724
725   /* First, the initial 16 bytes - special case UNIX sockets here
726    * since it may involve writing an ancillary message with file
727    * descriptors
728    */
729 #ifdef G_OS_UNIX
730   {
731     GOutputVector vector;
732     GSocketControlMessage *message;
733     GUnixFDList *fd_list;
734     gssize bytes_written;
735
736     fd_list = g_dbus_message_get_unix_fd_list (data->message);
737
738     message = NULL;
739     if (fd_list != NULL)
740       {
741         if (!G_IS_UNIX_CONNECTION (worker->stream))
742           {
743             g_set_error (error,
744                          G_IO_ERROR,
745                          G_IO_ERROR_INVALID_ARGUMENT,
746                          "Tried sending a file descriptor on unsupported stream of type %s",
747                          g_type_name (G_TYPE_FROM_INSTANCE (worker->stream)));
748             goto out;
749           }
750         else if (!(worker->capabilities & G_DBUS_CAPABILITY_FLAGS_UNIX_FD_PASSING))
751           {
752             g_set_error_literal (error,
753                                  G_IO_ERROR,
754                                  G_IO_ERROR_INVALID_ARGUMENT,
755                                  "Tried sending a file descriptor but remote peer does not support this capability");
756             goto out;
757           }
758         message = g_unix_fd_message_new_with_fd_list (fd_list);
759       }
760
761     vector.buffer = data->blob;
762     vector.size = 16;
763
764     bytes_written = g_socket_send_message (worker->socket,
765                                            NULL, /* address */
766                                            &vector,
767                                            1,
768                                            message != NULL ? &message : NULL,
769                                            message != NULL ? 1 : 0,
770                                            G_SOCKET_MSG_NONE,
771                                            worker->cancellable,
772                                            error);
773     if (bytes_written == -1)
774       {
775         g_prefix_error (error, _("Error writing first 16 bytes of message to socket: "));
776         if (message != NULL)
777           g_object_unref (message);
778         goto out;
779       }
780     if (message != NULL)
781       g_object_unref (message);
782
783     if (bytes_written < 16)
784       {
785         /* TODO: I think this needs to be handled ... are we guaranteed that the ancillary
786          * messages are sent?
787          */
788         g_assert_not_reached ();
789       }
790   }
791 #else
792   /* write the first 16 bytes (guaranteed to return an error if everything can't be written) */
793   if (!g_output_stream_write_all (g_io_stream_get_output_stream (worker->stream),
794                                   (const gchar *) data->blob,
795                                   16,
796                                   NULL, /* bytes_written */
797                                   worker->cancellable, /* cancellable */
798                                   error))
799     goto out;
800 #endif
801
802   /* Then write the rest of the message (guaranteed to return an error if everything can't be written) */
803   if (!g_output_stream_write_all (g_io_stream_get_output_stream (worker->stream),
804                                   (const gchar *) data->blob + 16,
805                                   data->blob_size - 16,
806                                   NULL, /* bytes_written */
807                                   worker->cancellable, /* cancellable */
808                                   error))
809     goto out;
810
811   ret = TRUE;
812
813   if (G_UNLIKELY (_g_dbus_debug_message ()))
814     {
815       gchar *s;
816       g_print ("========================================================================\n"
817                "GDBus-debug:Message:\n"
818                "  >>>> SENT D-Bus message (%" G_GSIZE_FORMAT " bytes)\n",
819                data->blob_size);
820       s = g_dbus_message_print (data->message, 2);
821       g_print ("%s", s);
822       g_free (s);
823       s = hexdump (data->blob, data->blob_size, 2);
824       g_print ("%s\n", s);
825       g_free (s);
826     }
827
828  out:
829   return ret;
830 }
831
832 /* ---------------------------------------------------------------------------------------------------- */
833
834 /* called in private thread shared by all GDBusConnection instances (without write-lock held) */
835 static gboolean
836 write_message_in_idle_cb (gpointer user_data)
837 {
838   GDBusWorker *worker = user_data;
839   gboolean more_writes_are_pending;
840   MessageToWriteData *data;
841   GError *error;
842
843   g_mutex_lock (worker->write_lock);
844
845   data = g_queue_pop_head (worker->write_queue);
846   g_assert (data != NULL);
847
848   error = NULL;
849   if (!write_message (worker,
850                       data,
851                       &error))
852     {
853       /* TODO: handle */
854       _g_dbus_worker_emit_disconnected (worker, TRUE, error);
855       g_error_free (error);
856     }
857   message_to_write_data_free (data);
858
859   more_writes_are_pending = (g_queue_get_length (worker->write_queue) > 0);
860
861   worker->write_is_pending = more_writes_are_pending;
862   g_mutex_unlock (worker->write_lock);
863
864   return more_writes_are_pending;
865 }
866
867 /* ---------------------------------------------------------------------------------------------------- */
868
869 /* can be called from any thread - steals blob */
870 void
871 _g_dbus_worker_send_message (GDBusWorker    *worker,
872                              GDBusMessage   *message,
873                              gchar          *blob,
874                              gsize           blob_len)
875 {
876   MessageToWriteData *data;
877
878   g_return_if_fail (G_IS_DBUS_MESSAGE (message));
879   g_return_if_fail (blob != NULL);
880   g_return_if_fail (blob_len > 16);
881
882   data = g_new0 (MessageToWriteData, 1);
883   data->message = g_object_ref (message);
884   data->blob = blob; /* steal! */
885   data->blob_size = blob_len;
886
887   g_mutex_lock (worker->write_lock);
888   g_queue_push_tail (worker->write_queue, data);
889   if (!worker->write_is_pending)
890     {
891       GSource *idle_source;
892
893       worker->write_is_pending = TRUE;
894
895       idle_source = g_idle_source_new ();
896       g_source_set_priority (idle_source, G_PRIORITY_DEFAULT);
897       g_source_set_callback (idle_source,
898                              write_message_in_idle_cb,
899                              _g_dbus_worker_ref (worker),
900                              (GDestroyNotify) _g_dbus_worker_unref);
901       g_source_attach (idle_source, shared_thread_data->context);
902       g_source_unref (idle_source);
903     }
904   g_mutex_unlock (worker->write_lock);
905 }
906
907 /* ---------------------------------------------------------------------------------------------------- */
908
909 static void
910 _g_dbus_worker_thread_begin_func (gpointer user_data)
911 {
912   GDBusWorker *worker = user_data;
913
914   worker->thread = g_thread_self ();
915
916   /* begin reading */
917   _g_dbus_worker_do_read (worker);
918 }
919
920 GDBusWorker *
921 _g_dbus_worker_new (GIOStream                          *stream,
922                     GDBusCapabilityFlags                capabilities,
923                     GDBusWorkerMessageReceivedCallback  message_received_callback,
924                     GDBusWorkerDisconnectedCallback     disconnected_callback,
925                     gpointer                            user_data)
926 {
927   GDBusWorker *worker;
928
929   g_return_val_if_fail (G_IS_IO_STREAM (stream), NULL);
930   g_return_val_if_fail (message_received_callback != NULL, NULL);
931   g_return_val_if_fail (disconnected_callback != NULL, NULL);
932
933   worker = g_new0 (GDBusWorker, 1);
934   worker->ref_count = 1;
935
936   worker->read_lock = g_mutex_new ();
937   worker->message_received_callback = message_received_callback;
938   worker->disconnected_callback = disconnected_callback;
939   worker->user_data = user_data;
940   worker->stream = g_object_ref (stream);
941   worker->capabilities = capabilities;
942   worker->cancellable = g_cancellable_new ();
943
944   worker->write_lock = g_mutex_new ();
945   worker->write_queue = g_queue_new ();
946
947   if (G_IS_SOCKET_CONNECTION (worker->stream))
948     worker->socket = g_socket_connection_get_socket (G_SOCKET_CONNECTION (worker->stream));
949
950   _g_dbus_shared_thread_ref (_g_dbus_worker_thread_begin_func, worker);
951
952   return worker;
953 }
954
955 /* This can be called from any thread - frees worker - guarantees no callbacks
956  * will ever be issued again
957  */
958 void
959 _g_dbus_worker_stop (GDBusWorker *worker)
960 {
961   /* If we're called in the worker thread it means we are called from
962    * a worker callback. This is fine, we just can't lock in that case since
963    * we're already holding the lock...
964    */
965   if (g_thread_self () != worker->thread)
966     g_mutex_lock (worker->read_lock);
967   worker->stopped = TRUE;
968   if (g_thread_self () != worker->thread)
969     g_mutex_unlock (worker->read_lock);
970
971   g_cancellable_cancel (worker->cancellable);
972   _g_dbus_worker_unref (worker);
973 }
974
975 #define G_DBUS_DEBUG_AUTHENTICATION (1<<0)
976 #define G_DBUS_DEBUG_MESSAGE        (1<<1)
977 #define G_DBUS_DEBUG_ALL            0xffffffff
978 static gint _gdbus_debug_flags = 0;
979
980 gboolean
981 _g_dbus_debug_authentication (void)
982 {
983   _g_dbus_initialize ();
984   return (_gdbus_debug_flags & G_DBUS_DEBUG_AUTHENTICATION) != 0;
985 }
986
987 gboolean
988 _g_dbus_debug_message (void)
989 {
990   _g_dbus_initialize ();
991   return (_gdbus_debug_flags & G_DBUS_DEBUG_MESSAGE) != 0;
992 }
993
994 /*
995  * _g_dbus_initialize:
996  *
997  * Does various one-time init things such as
998  *
999  *  - registering the G_DBUS_ERROR error domain
1000  *  - parses the G_DBUS_DEBUG environment variable
1001  */
1002 void
1003 _g_dbus_initialize (void)
1004 {
1005   static volatile gsize initialized = 0;
1006
1007   if (g_once_init_enter (&initialized))
1008     {
1009       volatile GQuark g_dbus_error_domain;
1010       const gchar *debug;
1011
1012       g_dbus_error_domain = G_DBUS_ERROR;
1013
1014       debug = g_getenv ("G_DBUS_DEBUG");
1015       if (debug != NULL)
1016         {
1017           gchar **tokens;
1018           guint n;
1019           tokens = g_strsplit (debug, ",", 0);
1020           for (n = 0; tokens[n] != NULL; n++)
1021             {
1022               if (g_strcmp0 (tokens[n], "authentication") == 0)
1023                 _gdbus_debug_flags |= G_DBUS_DEBUG_AUTHENTICATION;
1024               else if (g_strcmp0 (tokens[n], "message") == 0)
1025                 _gdbus_debug_flags |= G_DBUS_DEBUG_MESSAGE;
1026               else if (g_strcmp0 (tokens[n], "all") == 0)
1027                 _gdbus_debug_flags |= G_DBUS_DEBUG_ALL;
1028             }
1029           g_strfreev (tokens);
1030         }
1031
1032       g_once_init_leave (&initialized, 1);
1033     }
1034 }
1035
1036 /* ---------------------------------------------------------------------------------------------------- */
1037
1038 gchar *
1039 _g_dbus_compute_complete_signature (GDBusArgInfo **args,
1040                                     gboolean       include_parentheses)
1041 {
1042   GString *s;
1043   guint n;
1044
1045   if (include_parentheses)
1046     s = g_string_new ("(");
1047   else
1048     s = g_string_new ("");
1049   if (args != NULL)
1050     for (n = 0; args[n] != NULL; n++)
1051       g_string_append (s, args[n]->signature);
1052
1053   if (include_parentheses)
1054     g_string_append_c (s, ')');
1055
1056   return g_string_free (s, FALSE);
1057 }
1058
1059 /* ---------------------------------------------------------------------------------------------------- */
1060
1061 #ifdef G_OS_WIN32
1062
1063 extern BOOL WINAPI ConvertSidToStringSidA (PSID Sid, LPSTR *StringSid);
1064
1065 gchar *
1066 _g_dbus_win32_get_user_sid (void)
1067 {
1068   HANDLE h;
1069   TOKEN_USER *user;
1070   DWORD token_information_len;
1071   PSID psid;
1072   gchar *sid;
1073   gchar *ret;
1074
1075   ret = NULL;
1076   user = NULL;
1077   h = INVALID_HANDLE_VALUE;
1078
1079   if (!OpenProcessToken (GetCurrentProcess (), TOKEN_QUERY, &h))
1080     {
1081       g_warning ("OpenProcessToken failed with error code %d", (gint) GetLastError ());
1082       goto out;
1083     }
1084
1085   /* Get length of buffer */
1086   token_information_len = 0;
1087   if (!GetTokenInformation (h, TokenUser, NULL, 0, &token_information_len))
1088     {
1089       if (GetLastError () != ERROR_INSUFFICIENT_BUFFER)
1090         {
1091           g_warning ("GetTokenInformation() failed with error code %d", (gint) GetLastError ());
1092           goto out;
1093         }
1094     }
1095   user = g_malloc (token_information_len);
1096   if (!GetTokenInformation (h, TokenUser, user, token_information_len, &token_information_len))
1097     {
1098       g_warning ("GetTokenInformation() failed with error code %d", (gint) GetLastError ());
1099       goto out;
1100     }
1101
1102   psid = user->User.Sid;
1103   if (!IsValidSid (psid))
1104     {
1105       g_warning ("Invalid SID");
1106       goto out;
1107     }
1108
1109   if (!ConvertSidToStringSidA (psid, &sid))
1110     {
1111       g_warning ("Invalid SID");
1112       goto out;
1113     }
1114
1115   ret = g_strdup (sid);
1116   LocalFree (sid);
1117
1118 out:
1119   g_free (user);
1120   if (h != INVALID_HANDLE_VALUE)
1121     CloseHandle (h);
1122   return ret;
1123 }
1124 #endif
1125
1126 /* ---------------------------------------------------------------------------------------------------- */
1127
1128 #define __G_DBUS_PRIVATE_C__
1129 #include "gioaliasdef.c"