Only define _WIN32_WINNT if not already defined. (cherry picked from commit 98bb07181...
[platform/upstream/dbus.git] / dbus / dbus-sysdeps-win.c
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* dbus-sysdeps.c Wrappers around system/libc features (internal to D-BUS implementation)
3  * 
4  * Copyright (C) 2002, 2003  Red Hat, Inc.
5  * Copyright (C) 2003 CodeFactory AB
6  * Copyright (C) 2005 Novell, Inc.
7  * Copyright (C) 2006 Ralf Habacker <ralf.habacker@freenet.de>
8  * Copyright (C) 2006 Peter Kümmel  <syntheticpp@gmx.net>
9  * Copyright (C) 2006 Christian Ehrlicher <ch.ehrlicher@gmx.de>
10  *
11  * Licensed under the Academic Free License version 2.1
12  * 
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  * 
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
26  *
27  */
28
29 #undef open
30
31 #define STRSAFE_NO_DEPRECATE
32
33 #ifndef DBUS_WINCE
34 #ifndef _WIN32_WINNT
35 #define _WIN32_WINNT 0x0501
36 #endif
37 #endif
38
39 #include "dbus-internals.h"
40 #include "dbus-sysdeps.h"
41 #include "dbus-threads.h"
42 #include "dbus-protocol.h"
43 #include "dbus-string.h"
44 #include "dbus-sysdeps-win.h"
45 #include "dbus-protocol.h"
46 #include "dbus-hash.h"
47 #include "dbus-sockets-win.h"
48 #include "dbus-list.h"
49 #include "dbus-credentials.h"
50
51 #include <windows.h>
52 #include <ws2tcpip.h>
53 #include <fcntl.h>
54
55 #include <process.h>
56 #include <sys/stat.h>
57 #include <sys/types.h>
58
59 #ifdef HAVE_WSPIAPI_H
60 // needed for w2k compatibility (getaddrinfo/freeaddrinfo/getnameinfo)
61 #ifdef __GNUC__
62 #define _inline
63 #include "wspiapi.h"
64 #else
65 #include <wspiapi.h>
66 #endif
67 #endif // HAVE_WSPIAPI_H
68
69 #ifndef O_BINARY
70 #define O_BINARY 0
71 #endif
72
73 #ifndef HAVE_SOCKLEN_T
74 #define socklen_t int
75 #endif
76
77 /**
78  * File interface
79  *
80  */
81 dbus_bool_t
82 _dbus_file_open (DBusFile   *file,
83                  const char *filename,
84                  int         oflag,
85                  int         pmode)
86 {
87   if (pmode!=-1)
88     file->FDATA = _open (filename, oflag, pmode);
89   else
90     file->FDATA = _open (filename, oflag);
91   if (file->FDATA >= 0)
92     return TRUE;
93   else
94     {
95       file->FDATA = -1;
96       return FALSE;
97     }
98 }
99
100 dbus_bool_t
101 _dbus_file_close (DBusFile  *file,
102                   DBusError *error)
103 {
104   const int fd = file->FDATA;
105
106   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
107
108   _dbus_assert (fd >= 0);
109
110   if (_close (fd) == -1)
111     {
112       dbus_set_error (error, _dbus_error_from_errno (errno),
113                       "Could not close fd %d: %s", fd,
114                       _dbus_strerror (errno));
115       return FALSE;
116     }
117
118   file->FDATA = -1;
119   _dbus_verbose ("closed C file descriptor %d:\n",fd);
120
121   return TRUE;
122 }
123
124 int
125 _dbus_file_read(DBusFile   *file,
126                 DBusString *buffer,
127                 int         count)
128 {
129   const int fd = file->FDATA;
130   int bytes_read;
131   int start;
132   char *data;
133   _dbus_assert (count >= 0);
134
135   start = _dbus_string_get_length (buffer);
136
137   if (!_dbus_string_lengthen (buffer, count))
138     {
139       errno = ENOMEM;
140       return -1;
141     }
142
143   data = _dbus_string_get_data_len (buffer, start, count);
144
145   _dbus_assert (fd >= 0);
146
147   _dbus_verbose ("read: count=%d fd=%d\n", count, fd);
148   bytes_read = read (fd, data, count);
149
150   if (bytes_read == -1)
151     _dbus_verbose ("read: failed: %s\n", _dbus_strerror (errno));
152   else
153     _dbus_verbose ("read: = %d\n", bytes_read);
154
155   if (bytes_read < 0)
156     {
157       /* put length back (note that this doesn't actually realloc anything) */
158       _dbus_string_set_length (buffer, start);
159       return -1;
160     }
161   else
162     {
163       /* put length back (doesn't actually realloc) */
164       _dbus_string_set_length (buffer, start + bytes_read);
165
166 #if 0
167
168       if (bytes_read > 0)
169         _dbus_verbose_bytes_of_string (buffer, start, bytes_read);
170 #endif
171
172       return bytes_read;
173     }
174 }
175
176 int
177 _dbus_file_write (DBusFile         *file,
178                   const DBusString *buffer,
179                   int               start,
180                   int               len)
181 {
182   const int fd = file->FDATA;
183   const char *data;
184   int bytes_written;
185
186   data = _dbus_string_get_const_data_len (buffer, start, len);
187
188   _dbus_assert (fd >= 0);
189
190   _dbus_verbose ("write: len=%d fd=%d\n", len, fd);
191   bytes_written = write (fd, data, len);
192
193   if (bytes_written == -1)
194     _dbus_verbose ("write: failed: %s\n", _dbus_strerror (errno));
195   else
196     _dbus_verbose ("write: = %d\n", bytes_written);
197
198 #if 0
199
200   if (bytes_written > 0)
201     _dbus_verbose_bytes_of_string (buffer, start, bytes_written);
202 #endif
203
204   return bytes_written;
205 }
206
207 dbus_bool_t
208 _dbus_is_valid_file (DBusFile* file)
209 {
210   return file->FDATA >= 0;
211 }
212
213 dbus_bool_t _dbus_fstat (DBusFile    *file,
214                          struct stat *sb)
215 {
216   return fstat(file->FDATA, sb) >= 0;
217 }
218
219 /**
220  * write data to a pipe.
221  *
222  * @param pipe the pipe instance
223  * @param buffer the buffer to write data from
224  * @param start the first byte in the buffer to write
225  * @param len the number of bytes to try to write
226  * @param error error return
227  * @returns the number of bytes written or -1 on error
228  */
229 int
230 _dbus_pipe_write (DBusPipe         *pipe,
231                   const DBusString *buffer,
232                   int               start,
233                   int               len,
234                   DBusError        *error)
235 {
236   int written;
237   DBusFile file;
238   file.FDATA = pipe->fd_or_handle;
239   written = _dbus_file_write (&file, buffer, start, len);
240   if (written < 0)
241     {
242       dbus_set_error (error, DBUS_ERROR_FAILED,
243                       "Writing to pipe: %s\n",
244                       _dbus_strerror (errno));
245     }
246   return written;
247 }
248
249 /**
250  * close a pipe.
251  *
252  * @param pipe the pipe instance
253  * @param error return location for an error
254  * @returns #FALSE if error is set
255  */
256 int
257 _dbus_pipe_close  (DBusPipe         *pipe,
258                    DBusError        *error)
259 {
260   DBusFile file;
261   file.FDATA = pipe->fd_or_handle;
262   if (_dbus_file_close (&file, error) < 0)
263     {
264       return -1;
265     }
266   else
267     {
268       _dbus_pipe_invalidate (pipe);
269       return 0;
270     }
271 }
272
273 #undef FDATA
274
275 /**
276  * Socket interface
277  *
278  */
279
280 /**
281  * Thin wrapper around the read() system call that appends
282  * the data it reads to the DBusString buffer. It appends
283  * up to the given count, and returns the same value
284  * and same errno as read(). The only exception is that
285  * _dbus_read() handles EINTR for you. _dbus_read() can
286  * return ENOMEM, even though regular UNIX read doesn't.
287  *
288  * @param fd the file descriptor to read from
289  * @param buffer the buffer to append data to
290  * @param count the amount of data to read
291  * @returns the number of bytes read or -1
292  */
293 int
294 _dbus_read_socket (int               fd,
295                    DBusString       *buffer,
296                    int               count)
297 {
298   int bytes_read;
299   int start;
300   char *data;
301
302   _dbus_assert (count >= 0);
303
304   start = _dbus_string_get_length (buffer);
305
306   if (!_dbus_string_lengthen (buffer, count))
307     {
308       errno = ENOMEM;
309       return -1;
310     }
311
312   data = _dbus_string_get_data_len (buffer, start, count);
313
314  again:
315  
316   _dbus_verbose ("recv: count=%d fd=%d\n", count, fd);
317   bytes_read = recv (fd, data, count, 0);
318   
319   if (bytes_read == SOCKET_ERROR)
320         {
321           DBUS_SOCKET_SET_ERRNO();
322           _dbus_verbose ("recv: failed: %s\n", _dbus_strerror (errno));
323           bytes_read = -1;
324         }
325         else
326           _dbus_verbose ("recv: = %d\n", bytes_read);
327
328   if (bytes_read < 0)
329     {
330       if (errno == EINTR)
331         goto again;
332       else      
333         {
334           /* put length back (note that this doesn't actually realloc anything) */
335           _dbus_string_set_length (buffer, start);
336           return -1;
337         }
338     }
339   else
340     {
341       /* put length back (doesn't actually realloc) */
342       _dbus_string_set_length (buffer, start + bytes_read);
343
344 #if 0
345       if (bytes_read > 0)
346         _dbus_verbose_bytes_of_string (buffer, start, bytes_read);
347 #endif
348
349       return bytes_read;
350     }
351 }
352
353 /**
354  * Thin wrapper around the write() system call that writes a part of a
355  * DBusString and handles EINTR for you.
356  * 
357  * @param fd the file descriptor to write
358  * @param buffer the buffer to write data from
359  * @param start the first byte in the buffer to write
360  * @param len the number of bytes to try to write
361  * @returns the number of bytes written or -1 on error
362  */
363 int
364 _dbus_write_socket (int               fd,
365                     const DBusString *buffer,
366                     int               start,
367                     int               len)
368 {
369   const char *data;
370   int bytes_written;
371
372   data = _dbus_string_get_const_data_len (buffer, start, len);
373
374  again:
375
376   _dbus_verbose ("send: len=%d fd=%d\n", len, fd);
377   bytes_written = send (fd, data, len, 0);
378
379   if (bytes_written == SOCKET_ERROR)
380     {
381       DBUS_SOCKET_SET_ERRNO();
382       _dbus_verbose ("send: failed: %s\n", _dbus_strerror (errno));
383       bytes_written = -1;
384     }
385     else
386       _dbus_verbose ("send: = %d\n", bytes_written);
387
388   if (bytes_written < 0 && errno == EINTR)
389     goto again;
390     
391 #if 0
392   if (bytes_written > 0)
393     _dbus_verbose_bytes_of_string (buffer, start, bytes_written);
394 #endif
395
396   return bytes_written;
397 }
398
399
400 /**
401  * Closes a file descriptor.
402  *
403  * @param fd the file descriptor
404  * @param error error object
405  * @returns #FALSE if error set
406  */
407 dbus_bool_t
408 _dbus_close_socket (int        fd,
409                     DBusError *error)
410 {
411   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
412
413  again:
414   if (closesocket (fd) == SOCKET_ERROR)
415     {
416       DBUS_SOCKET_SET_ERRNO ();
417       
418       if (errno == EINTR)
419         goto again;
420         
421       dbus_set_error (error, _dbus_error_from_errno (errno),
422                       "Could not close socket: socket=%d, , %s",
423                       fd, _dbus_strerror (errno));
424       return FALSE;
425     }
426   _dbus_verbose ("_dbus_close_socket: socket=%d, \n", fd);
427
428   return TRUE;
429 }
430
431 /**
432  * Sets the file descriptor to be close
433  * on exec. Should be called for all file
434  * descriptors in D-Bus code.
435  *
436  * @param fd the file descriptor
437  */
438 void
439 _dbus_fd_set_close_on_exec (int handle)
440 {
441 #ifdef ENABLE_DBUSSOCKET
442   DBusSocket *s;
443   if (handle < 0)
444     return;
445
446   _dbus_lock_sockets();
447
448   _dbus_handle_to_socket_unlocked (handle, &s);
449   s->close_on_exec = TRUE;
450
451   _dbus_unlock_sockets();
452 #else
453   /* TODO unic code.
454   int val;
455   
456   val = fcntl (fd, F_GETFD, 0);
457   
458   if (val < 0)
459     return;
460
461   val |= FD_CLOEXEC;
462   
463   fcntl (fd, F_SETFD, val);
464   */
465 #endif
466 }
467
468 /**
469  * Sets a file descriptor to be nonblocking.
470  *
471  * @param fd the file descriptor.
472  * @param error address of error location.
473  * @returns #TRUE on success.
474  */
475 dbus_bool_t
476 _dbus_set_fd_nonblocking (int             handle,
477                           DBusError      *error)
478 {
479   u_long one = 1;
480
481   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
482
483   if (ioctlsocket (handle, FIONBIO, &one) == SOCKET_ERROR)
484     {
485       dbus_set_error (error, _dbus_error_from_errno (WSAGetLastError ()),
486                       "Failed to set socket %d:%d to nonblocking: %s", handle,
487                       _dbus_strerror (WSAGetLastError ()));
488       return FALSE;
489     }
490
491   return TRUE;
492 }
493
494
495 /**
496  * Like _dbus_write() but will use writev() if possible
497  * to write both buffers in sequence. The return value
498  * is the number of bytes written in the first buffer,
499  * plus the number written in the second. If the first
500  * buffer is written successfully and an error occurs
501  * writing the second, the number of bytes in the first
502  * is returned (i.e. the error is ignored), on systems that
503  * don't have writev. Handles EINTR for you.
504  * The second buffer may be #NULL.
505  *
506  * @param fd the file descriptor
507  * @param buffer1 first buffer
508  * @param start1 first byte to write in first buffer
509  * @param len1 number of bytes to write from first buffer
510  * @param buffer2 second buffer, or #NULL
511  * @param start2 first byte to write in second buffer
512  * @param len2 number of bytes to write in second buffer
513  * @returns total bytes written from both buffers, or -1 on error
514  */
515 int
516 _dbus_write_socket_two (int               fd,
517                         const DBusString *buffer1,
518                         int               start1,
519                         int               len1,
520                         const DBusString *buffer2,
521                         int               start2,
522                         int               len2)
523 {
524   WSABUF vectors[2];
525   const char *data1;
526   const char *data2;
527   int rc;
528   DWORD bytes_written;
529   int ret1;
530
531   _dbus_assert (buffer1 != NULL);
532   _dbus_assert (start1 >= 0);
533   _dbus_assert (start2 >= 0);
534   _dbus_assert (len1 >= 0);
535   _dbus_assert (len2 >= 0);
536
537
538   data1 = _dbus_string_get_const_data_len (buffer1, start1, len1);
539
540   if (buffer2 != NULL)
541     data2 = _dbus_string_get_const_data_len (buffer2, start2, len2);
542   else
543     {
544       data2 = NULL;
545       start2 = 0;
546       len2 = 0;
547     }
548
549   vectors[0].buf = (char*) data1;
550   vectors[0].len = len1;
551   vectors[1].buf = (char*) data2;
552   vectors[1].len = len2;
553
554  again:
555  
556   _dbus_verbose ("WSASend: len1+2=%d+%d fd=%d\n", len1, len2, fd);
557   rc = WSASend (fd, 
558                 vectors,
559                 data2 ? 2 : 1, 
560                 &bytes_written,
561                 0, 
562                 NULL, 
563                 NULL);
564                 
565   if (rc < 0)
566     {
567       DBUS_SOCKET_SET_ERRNO ();
568       _dbus_verbose ("WSASend: failed: %s\n", _dbus_strerror (errno));
569       bytes_written = -1;
570     }
571   else
572     _dbus_verbose ("WSASend: = %ld\n", bytes_written);
573     
574   if (bytes_written < 0 && errno == EINTR)
575     goto again;
576       
577   return bytes_written;
578 }
579
580 #if 0
581
582 /**
583  * Opens the client side of a Windows named pipe. The connection D-BUS
584  * file descriptor index is returned. It is set up as nonblocking.
585  * 
586  * @param path the path to named pipe socket
587  * @param error return location for error code
588  * @returns connection D-BUS file descriptor or -1 on error
589  */
590 int
591 _dbus_connect_named_pipe (const char     *path,
592                           DBusError      *error)
593 {
594   _dbus_assert_not_reached ("not implemented");
595 }
596
597 #endif
598
599
600
601 void
602 _dbus_win_startup_winsock (void)
603 {
604   /* Straight from MSDN, deuglified */
605
606   static dbus_bool_t beenhere = FALSE;
607
608   WORD wVersionRequested;
609   WSADATA wsaData;
610   int err;
611
612   if (beenhere)
613     return;
614
615   wVersionRequested = MAKEWORD (2, 0);
616
617   err = WSAStartup (wVersionRequested, &wsaData);
618   if (err != 0)
619     {
620       _dbus_assert_not_reached ("Could not initialize WinSock");
621       _dbus_abort ();
622     }
623
624   /* Confirm that the WinSock DLL supports 2.0.  Note that if the DLL
625    * supports versions greater than 2.0 in addition to 2.0, it will
626    * still return 2.0 in wVersion since that is the version we
627    * requested.
628    */
629   if (LOBYTE (wsaData.wVersion) != 2 ||
630       HIBYTE (wsaData.wVersion) != 0)
631     {
632       _dbus_assert_not_reached ("No usable WinSock found");
633       _dbus_abort ();
634     }
635
636   beenhere = TRUE;
637 }
638
639
640
641
642
643
644
645
646
647 /************************************************************************
648  
649  UTF / string code
650  
651  ************************************************************************/
652
653 /**
654  * Measure the message length without terminating nul 
655  */
656 int _dbus_printf_string_upper_bound (const char *format,
657                                      va_list args)
658 {
659   /* MSVCRT's vsnprintf semantics are a bit different */
660   /* The C library source in the Platform SDK indicates that this
661    * would work, but alas, it doesn't. At least not on Windows
662    * 2000. Presumably those sources correspond to the C library on
663    * some newer or even future Windows version.
664    *
665     len = _vsnprintf (NULL, _DBUS_INT_MAX, format, args);
666    */
667   char p[1024];
668   int len;
669   len = _vsnprintf (p, sizeof(p)-1, format, args);
670   if (len == -1) // try again
671     {
672       char *p;
673       p = malloc (strlen(format)*3);
674       len = _vsnprintf (p, sizeof(p)-1, format, args);
675       free(p);
676     }
677   return len;
678 }
679
680
681 /**
682  * Returns the UTF-16 form of a UTF-8 string. The result should be
683  * freed with dbus_free() when no longer needed.
684  *
685  * @param str the UTF-8 string
686  * @param error return location for error code
687  */
688 wchar_t *
689 _dbus_win_utf8_to_utf16 (const char *str,
690                          DBusError  *error)
691 {
692   DBusString s;
693   int n;
694   wchar_t *retval;
695
696   _dbus_string_init_const (&s, str);
697
698   if (!_dbus_string_validate_utf8 (&s, 0, _dbus_string_get_length (&s)))
699     {
700       dbus_set_error_const (error, DBUS_ERROR_FAILED, "Invalid UTF-8");
701       return NULL;
702     }
703
704   n = MultiByteToWideChar (CP_UTF8, 0, str, -1, NULL, 0);
705
706   if (n == 0)
707     {
708       _dbus_win_set_error_from_win_error (error, GetLastError ());
709       return NULL;
710     }
711
712   retval = dbus_new (wchar_t, n);
713
714   if (!retval)
715     {
716       _DBUS_SET_OOM (error);
717       return NULL;
718     }
719
720   if (MultiByteToWideChar (CP_UTF8, 0, str, -1, retval, n) != n)
721     {
722       dbus_free (retval);
723       dbus_set_error_const (error, DBUS_ERROR_FAILED, "MultiByteToWideChar inconsistency");
724       return NULL;
725     }
726
727   return retval;
728 }
729
730 /**
731  * Returns the UTF-8 form of a UTF-16 string. The result should be
732  * freed with dbus_free() when no longer needed.
733  *
734  * @param str the UTF-16 string
735  * @param error return location for error code
736  */
737 char *
738 _dbus_win_utf16_to_utf8 (const wchar_t *str,
739                          DBusError     *error)
740 {
741   int n;
742   char *retval;
743
744   n = WideCharToMultiByte (CP_UTF8, 0, str, -1, NULL, 0, NULL, NULL);
745
746   if (n == 0)
747     {
748       _dbus_win_set_error_from_win_error (error, GetLastError ());
749       return NULL;
750     }
751
752   retval = dbus_malloc (n);
753
754   if (!retval)
755     {
756       _DBUS_SET_OOM (error);
757       return NULL;
758     }
759
760   if (WideCharToMultiByte (CP_UTF8, 0, str, -1, retval, n, NULL, NULL) != n)
761     {
762       dbus_free (retval);
763       dbus_set_error_const (error, DBUS_ERROR_FAILED, "WideCharToMultiByte inconsistency");
764       return NULL;
765     }
766
767   return retval;
768 }
769
770
771
772
773
774
775 /************************************************************************
776  
777  
778  ************************************************************************/
779
780 dbus_bool_t
781 _dbus_win_account_to_sid (const wchar_t *waccount,
782                           void           **ppsid,
783                           DBusError       *error)
784 {
785   dbus_bool_t retval = FALSE;
786   DWORD sid_length, wdomain_length;
787   SID_NAME_USE use;
788   wchar_t *wdomain;
789
790   *ppsid = NULL;
791
792   sid_length = 0;
793   wdomain_length = 0;
794   if (!LookupAccountNameW (NULL, waccount, NULL, &sid_length,
795                            NULL, &wdomain_length, &use) &&
796       GetLastError () != ERROR_INSUFFICIENT_BUFFER)
797     {
798       _dbus_win_set_error_from_win_error (error, GetLastError ());
799       return FALSE;
800     }
801
802   *ppsid = dbus_malloc (sid_length);
803   if (!*ppsid)
804     {
805       _DBUS_SET_OOM (error);
806       return FALSE;
807     }
808
809   wdomain = dbus_new (wchar_t, wdomain_length);
810   if (!wdomain)
811     {
812       _DBUS_SET_OOM (error);
813       goto out1;
814     }
815
816   if (!LookupAccountNameW (NULL, waccount, (PSID) *ppsid, &sid_length,
817                            wdomain, &wdomain_length, &use))
818     {
819       _dbus_win_set_error_from_win_error (error, GetLastError ());
820       goto out2;
821     }
822
823   if (!IsValidSid ((PSID) *ppsid))
824     {
825       dbus_set_error_const (error, DBUS_ERROR_FAILED, "Invalid SID");
826       goto out2;
827     }
828
829   retval = TRUE;
830
831 out2:
832   dbus_free (wdomain);
833 out1:
834   if (!retval)
835     {
836       dbus_free (*ppsid);
837       *ppsid = NULL;
838     }
839
840   return retval;
841 }
842
843 /** @} end of sysdeps-win */
844
845
846 /** Gets our UID
847  * @returns process UID
848  */
849 dbus_uid_t
850 _dbus_getuid (void)
851 {
852         return DBUS_UID_UNSET;
853 }
854
855 /**
856  * The only reason this is separate from _dbus_getpid() is to allow it
857  * on Windows for logging but not for other purposes.
858  * 
859  * @returns process ID to put in log messages
860  */
861 unsigned long
862 _dbus_pid_for_log (void)
863 {
864   return _dbus_getpid ();
865 }
866
867 /** Gets our SID
868  * @param points to sid buffer, need to be freed with LocalFree()
869  * @returns process sid
870  */
871 dbus_bool_t
872 _dbus_getsid(char **sid)
873 {
874   HANDLE process_token = NULL;
875   TOKEN_USER *token_user = NULL;
876   DWORD n;
877   PSID psid;
878   int retval = FALSE;
879   
880   if (!OpenProcessToken (GetCurrentProcess (), TOKEN_QUERY, &process_token)) 
881     {
882       _dbus_win_warn_win_error ("OpenProcessToken failed", GetLastError ());
883       goto failed;
884     }
885   if ((!GetTokenInformation (process_token, TokenUser, NULL, 0, &n)
886             && GetLastError () != ERROR_INSUFFICIENT_BUFFER)
887            || (token_user = alloca (n)) == NULL
888            || !GetTokenInformation (process_token, TokenUser, token_user, n, &n))
889     {
890       _dbus_win_warn_win_error ("GetTokenInformation failed", GetLastError ());
891       goto failed;
892     }
893   psid = token_user->User.Sid;
894   if (!IsValidSid (psid))
895     {
896       _dbus_verbose("%s invalid sid\n",__FUNCTION__);
897       goto failed;
898     }
899   if (!ConvertSidToStringSidA (psid, sid))
900     {
901       _dbus_verbose("%s invalid sid\n",__FUNCTION__);
902       goto failed;
903     }
904 //okay:
905   retval = TRUE;
906
907 failed:
908   if (process_token != NULL)
909     CloseHandle (process_token);
910
911   _dbus_verbose("_dbus_getsid() returns %d\n",retval);
912   return retval;
913 }
914
915
916 #ifdef DBUS_BUILD_TESTS
917 /** Gets our GID
918  * @returns process GID
919  */
920 dbus_gid_t
921 _dbus_getgid (void)
922 {
923         return DBUS_GID_UNSET;
924 }
925
926 #if 0
927 dbus_bool_t
928 _dbus_domain_test (const char *test_data_dir)
929 {
930   if (!_dbus_test_oom_handling ("spawn_nonexistent",
931                                 check_spawn_nonexistent,
932                                 NULL))
933     return FALSE;
934 }
935
936 #endif
937
938 #endif //DBUS_BUILD_TESTS
939
940 /************************************************************************
941  
942  pipes
943  
944  ************************************************************************/
945
946 /**
947  * Creates a full-duplex pipe (as in socketpair()).
948  * Sets both ends of the pipe nonblocking.
949  *
950  * @todo libdbus only uses this for the debug-pipe server, so in
951  * principle it could be in dbus-sysdeps-util.c, except that
952  * dbus-sysdeps-util.c isn't in libdbus when tests are enabled and the
953  * debug-pipe server is used.
954  * 
955  * @param fd1 return location for one end
956  * @param fd2 return location for the other end
957  * @param blocking #TRUE if pipe should be blocking
958  * @param error error return
959  * @returns #FALSE on failure (if error is set)
960  */
961 dbus_bool_t
962 _dbus_full_duplex_pipe (int        *fd1,
963                         int        *fd2,
964                         dbus_bool_t blocking,
965                         DBusError  *error)
966 {
967   SOCKET temp, socket1 = -1, socket2 = -1;
968   struct sockaddr_in saddr;
969   int len;
970   u_long arg;
971   fd_set read_set, write_set;
972   struct timeval tv;
973
974   _dbus_win_startup_winsock ();
975
976   temp = socket (AF_INET, SOCK_STREAM, 0);
977   if (temp == INVALID_SOCKET)
978     {
979       DBUS_SOCKET_SET_ERRNO ();
980       goto out0;
981     }
982
983   arg = 1;
984   if (ioctlsocket (temp, FIONBIO, &arg) == SOCKET_ERROR)
985     {
986       DBUS_SOCKET_SET_ERRNO ();
987       goto out0;
988     }
989
990   _DBUS_ZERO (saddr);
991   saddr.sin_family = AF_INET;
992   saddr.sin_port = 0;
993   saddr.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
994
995   if (bind (temp, (struct sockaddr *)&saddr, sizeof (saddr)))
996     {
997       DBUS_SOCKET_SET_ERRNO ();
998       goto out0;
999     }
1000
1001   if (listen (temp, 1) == SOCKET_ERROR)
1002     {
1003       DBUS_SOCKET_SET_ERRNO ();
1004       goto out0;
1005     }
1006
1007   len = sizeof (saddr);
1008   if (getsockname (temp, (struct sockaddr *)&saddr, &len))
1009     {
1010       DBUS_SOCKET_SET_ERRNO ();
1011       goto out0;
1012     }
1013
1014   socket1 = socket (AF_INET, SOCK_STREAM, 0);
1015   if (socket1 == INVALID_SOCKET)
1016     {
1017       DBUS_SOCKET_SET_ERRNO ();
1018       goto out0;
1019     }
1020
1021   arg = 1;
1022   if (ioctlsocket (socket1, FIONBIO, &arg) == SOCKET_ERROR)
1023     {
1024       DBUS_SOCKET_SET_ERRNO ();
1025       goto out1;
1026     }
1027
1028   if (connect (socket1, (struct sockaddr  *)&saddr, len) != SOCKET_ERROR ||
1029       WSAGetLastError () != WSAEWOULDBLOCK)
1030     {
1031       DBUS_SOCKET_SET_ERRNO ();
1032       goto out1;
1033     }
1034
1035   FD_ZERO (&read_set);
1036   FD_SET (temp, &read_set);
1037
1038   tv.tv_sec = 0;
1039   tv.tv_usec = 0;
1040
1041   if (select (0, &read_set, NULL, NULL, NULL) == SOCKET_ERROR)
1042     {
1043       DBUS_SOCKET_SET_ERRNO ();
1044       goto out1;
1045     }
1046
1047   _dbus_assert (FD_ISSET (temp, &read_set));
1048
1049   socket2 = accept (temp, (struct sockaddr *) &saddr, &len);
1050   if (socket2 == INVALID_SOCKET)
1051     {
1052       DBUS_SOCKET_SET_ERRNO ();
1053       goto out1;
1054     }
1055
1056   FD_ZERO (&write_set);
1057   FD_SET (socket1, &write_set);
1058
1059   tv.tv_sec = 0;
1060   tv.tv_usec = 0;
1061
1062   if (select (0, NULL, &write_set, NULL, NULL) == SOCKET_ERROR)
1063     {
1064       DBUS_SOCKET_SET_ERRNO ();
1065       goto out2;
1066     }
1067
1068   _dbus_assert (FD_ISSET (socket1, &write_set));
1069
1070   if (blocking)
1071     {
1072       arg = 0;
1073       if (ioctlsocket (socket1, FIONBIO, &arg) == SOCKET_ERROR)
1074         {
1075           DBUS_SOCKET_SET_ERRNO ();
1076           goto out2;
1077         }
1078
1079       arg = 0;
1080       if (ioctlsocket (socket2, FIONBIO, &arg) == SOCKET_ERROR)
1081         {
1082           DBUS_SOCKET_SET_ERRNO ();
1083           goto out2;
1084         }
1085     }
1086   else
1087     {
1088       arg = 1;
1089       if (ioctlsocket (socket2, FIONBIO, &arg) == SOCKET_ERROR)
1090         {
1091           DBUS_SOCKET_SET_ERRNO ();
1092           goto out2;
1093         }
1094     }
1095
1096   *fd1 = socket1;
1097   *fd2 = socket2;
1098
1099   _dbus_verbose ("full-duplex pipe %d:%d <-> %d:%d\n",
1100                  *fd1, socket1, *fd2, socket2);
1101
1102   closesocket (temp);
1103
1104   return TRUE;
1105
1106 out2:
1107   closesocket (socket2);
1108 out1:
1109   closesocket (socket1);
1110 out0:
1111   closesocket (temp);
1112
1113   dbus_set_error (error, _dbus_error_from_errno (errno),
1114                   "Could not setup socket pair: %s",
1115                   _dbus_strerror (errno));
1116
1117   return FALSE;
1118 }
1119
1120 /**
1121  * Wrapper for poll().
1122  *
1123  * @param fds the file descriptors to poll
1124  * @param n_fds number of descriptors in the array
1125  * @param timeout_milliseconds timeout or -1 for infinite
1126  * @returns numbers of fds with revents, or <0 on error
1127  */
1128 #define USE_CHRIS_IMPL 0
1129 #if USE_CHRIS_IMPL
1130 int
1131 _dbus_poll (DBusPollFD *fds,
1132             int         n_fds,
1133             int         timeout_milliseconds)
1134 {
1135 #define DBUS_POLL_CHAR_BUFFER_SIZE 2000
1136   char msg[DBUS_POLL_CHAR_BUFFER_SIZE];
1137   char *msgp;
1138
1139   int ret = 0;
1140   int i;
1141   struct timeval tv;
1142   int ready;
1143
1144 #define DBUS_STACK_WSAEVENTS 256
1145   WSAEVENT eventsOnStack[DBUS_STACK_WSAEVENTS];
1146   WSAEVENT *pEvents = NULL;
1147   if (n_fds > DBUS_STACK_WSAEVENTS)
1148     pEvents = calloc(sizeof(WSAEVENT), n_fds);
1149   else
1150     pEvents = eventsOnStack;
1151
1152
1153 #ifdef DBUS_ENABLE_VERBOSE_MODE
1154   msgp = msg;
1155   msgp += sprintf (msgp, "WSAEventSelect: to=%d\n\t", timeout_milliseconds);
1156   for (i = 0; i < n_fds; i++)
1157     {
1158       static dbus_bool_t warned = FALSE;
1159       DBusPollFD *fdp = &fds[i];
1160
1161
1162       if (fdp->events & _DBUS_POLLIN)
1163         msgp += sprintf (msgp, "R:%d ", fdp->fd);
1164
1165       if (fdp->events & _DBUS_POLLOUT)
1166         msgp += sprintf (msgp, "W:%d ", fdp->fd);
1167
1168       msgp += sprintf (msgp, "E:%d\n\t", fdp->fd);
1169
1170       // FIXME: more robust code for long  msg
1171       //        create on heap when msg[] becomes too small
1172       if (msgp >= msg + DBUS_POLL_CHAR_BUFFER_SIZE)
1173         {
1174           _dbus_assert_not_reached ("buffer overflow in _dbus_poll");
1175         }
1176     }
1177
1178   msgp += sprintf (msgp, "\n");
1179   _dbus_verbose ("%s",msg);
1180 #endif
1181   for (i = 0; i < n_fds; i++)
1182     {
1183       DBusPollFD *fdp = &fds[i];
1184       WSAEVENT ev;
1185       long lNetworkEvents = FD_OOB;
1186
1187       ev = WSACreateEvent();
1188
1189       if (fdp->events & _DBUS_POLLIN)
1190         lNetworkEvents |= FD_READ | FD_ACCEPT | FD_CLOSE;
1191
1192       if (fdp->events & _DBUS_POLLOUT)
1193         lNetworkEvents |= FD_WRITE | FD_CONNECT;
1194
1195       WSAEventSelect(fdp->fd, ev, lNetworkEvents);
1196
1197       pEvents[i] = ev;
1198     }
1199
1200
1201   ready = WSAWaitForMultipleEvents (n_fds, pEvents, FALSE, timeout_milliseconds, FALSE);
1202
1203   if (DBUS_SOCKET_API_RETURNS_ERROR (ready))
1204     {
1205       DBUS_SOCKET_SET_ERRNO ();
1206       if (errno != EWOULDBLOCK)
1207         _dbus_verbose ("WSAWaitForMultipleEvents: failed: %s\n", _dbus_strerror (errno));
1208       ret = -1;
1209     }
1210   else if (ready == WSA_WAIT_TIMEOUT)
1211     {
1212       _dbus_verbose ("WSAWaitForMultipleEvents: WSA_WAIT_TIMEOUT\n");
1213       ret = 0;
1214     }
1215   else if (ready >= WSA_WAIT_EVENT_0 && ready < (int)(WSA_WAIT_EVENT_0 + n_fds))
1216     {
1217       msgp = msg;
1218       msgp += sprintf (msgp, "WSAWaitForMultipleEvents: =%d\n\t", ready);
1219
1220       for (i = 0; i < n_fds; i++)
1221         {
1222           DBusPollFD *fdp = &fds[i];
1223           WSANETWORKEVENTS ne;
1224
1225           fdp->revents = 0;
1226
1227           WSAEnumNetworkEvents(fdp->fd, pEvents[i], &ne);
1228
1229           if (ne.lNetworkEvents & (FD_READ | FD_ACCEPT | FD_CLOSE))
1230             fdp->revents |= _DBUS_POLLIN;
1231
1232           if (ne.lNetworkEvents & (FD_WRITE | FD_CONNECT))
1233             fdp->revents |= _DBUS_POLLOUT;
1234
1235           if (ne.lNetworkEvents & (FD_OOB))
1236             fdp->revents |= _DBUS_POLLERR;
1237
1238           if (ne.lNetworkEvents & (FD_READ | FD_ACCEPT | FD_CLOSE))
1239               msgp += sprintf (msgp, "R:%d ", fdp->fd);
1240
1241           if (ne.lNetworkEvents & (FD_WRITE | FD_CONNECT))
1242               msgp += sprintf (msgp, "W:%d ", fdp->fd);
1243
1244           if (ne.lNetworkEvents & (FD_OOB))
1245               msgp += sprintf (msgp, "E:%d ", fdp->fd);
1246
1247           msgp += sprintf (msgp, "lNetworkEvents:%d ", ne.lNetworkEvents);
1248
1249           if(ne.lNetworkEvents)
1250             ret++;
1251
1252           WSAEventSelect(fdp->fd, pEvents[i], 0);
1253         }
1254
1255       msgp += sprintf (msgp, "\n");
1256       _dbus_verbose ("%s",msg);
1257     }
1258   else
1259     {
1260       _dbus_verbose ("WSAWaitForMultipleEvents: failed for unknown reason!");
1261       ret = -1;
1262     }
1263
1264   for(i = 0; i < n_fds; i++)
1265     {
1266       WSACloseEvent(pEvents[i]);
1267     }
1268
1269   if (n_fds > DBUS_STACK_WSAEVENTS)
1270     free(pEvents);
1271
1272   return ret;
1273 }
1274
1275 #else   // USE_CHRIS_IMPL
1276
1277 int
1278 _dbus_poll (DBusPollFD *fds,
1279             int         n_fds,
1280             int         timeout_milliseconds)
1281 {
1282 #define DBUS_POLL_CHAR_BUFFER_SIZE 2000
1283   char msg[DBUS_POLL_CHAR_BUFFER_SIZE];
1284   char *msgp;
1285
1286   fd_set read_set, write_set, err_set;
1287   int max_fd = 0;
1288   int i;
1289   struct timeval tv;
1290   int ready;
1291
1292   FD_ZERO (&read_set);
1293   FD_ZERO (&write_set);
1294   FD_ZERO (&err_set);
1295
1296
1297 #ifdef DBUS_ENABLE_VERBOSE_MODE
1298   msgp = msg;
1299   msgp += sprintf (msgp, "select: to=%d\n\t", timeout_milliseconds);
1300   for (i = 0; i < n_fds; i++)
1301     {
1302       static dbus_bool_t warned = FALSE;
1303       DBusPollFD *fdp = &fds[i];
1304
1305
1306       if (fdp->events & _DBUS_POLLIN)
1307         msgp += sprintf (msgp, "R:%d ", fdp->fd);
1308
1309       if (fdp->events & _DBUS_POLLOUT)
1310         msgp += sprintf (msgp, "W:%d ", fdp->fd);
1311
1312       msgp += sprintf (msgp, "E:%d\n\t", fdp->fd);
1313
1314       // FIXME: more robust code for long  msg
1315       //        create on heap when msg[] becomes too small
1316       if (msgp >= msg + DBUS_POLL_CHAR_BUFFER_SIZE)
1317         {
1318           _dbus_assert_not_reached ("buffer overflow in _dbus_poll");
1319         }
1320     }
1321
1322   msgp += sprintf (msgp, "\n");
1323   _dbus_verbose ("%s",msg);
1324 #endif
1325   for (i = 0; i < n_fds; i++)
1326     {
1327       DBusPollFD *fdp = &fds[i]; 
1328
1329       if (fdp->events & _DBUS_POLLIN)
1330         FD_SET (fdp->fd, &read_set);
1331
1332       if (fdp->events & _DBUS_POLLOUT)
1333         FD_SET (fdp->fd, &write_set);
1334
1335       FD_SET (fdp->fd, &err_set);
1336
1337       max_fd = MAX (max_fd, fdp->fd);
1338     }
1339
1340
1341   tv.tv_sec = timeout_milliseconds / 1000;
1342   tv.tv_usec = (timeout_milliseconds % 1000) * 1000;
1343
1344   ready = select (max_fd + 1, &read_set, &write_set, &err_set,
1345                   timeout_milliseconds < 0 ? NULL : &tv);
1346
1347   if (DBUS_SOCKET_API_RETURNS_ERROR (ready))
1348     {
1349       DBUS_SOCKET_SET_ERRNO ();
1350       if (errno != EWOULDBLOCK)
1351         _dbus_verbose ("select: failed: %s\n", _dbus_strerror (errno));
1352     }
1353   else if (ready == 0)
1354     _dbus_verbose ("select: = 0\n");
1355   else
1356     if (ready > 0)
1357       {
1358 #ifdef DBUS_ENABLE_VERBOSE_MODE
1359         msgp = msg;
1360         msgp += sprintf (msgp, "select: = %d:\n\t", ready);
1361
1362         for (i = 0; i < n_fds; i++)
1363           {
1364             DBusPollFD *fdp = &fds[i];
1365
1366             if (FD_ISSET (fdp->fd, &read_set))
1367               msgp += sprintf (msgp, "R:%d ", fdp->fd);
1368
1369             if (FD_ISSET (fdp->fd, &write_set))
1370               msgp += sprintf (msgp, "W:%d ", fdp->fd);
1371
1372             if (FD_ISSET (fdp->fd, &err_set))
1373               msgp += sprintf (msgp, "E:%d\n\t", fdp->fd);
1374           }
1375         msgp += sprintf (msgp, "\n");
1376         _dbus_verbose ("%s",msg);
1377 #endif
1378
1379         for (i = 0; i < n_fds; i++)
1380           {
1381             DBusPollFD *fdp = &fds[i];
1382
1383             fdp->revents = 0;
1384
1385             if (FD_ISSET (fdp->fd, &read_set))
1386               fdp->revents |= _DBUS_POLLIN;
1387
1388             if (FD_ISSET (fdp->fd, &write_set))
1389               fdp->revents |= _DBUS_POLLOUT;
1390
1391             if (FD_ISSET (fdp->fd, &err_set))
1392               fdp->revents |= _DBUS_POLLERR;
1393           }
1394       }
1395   return ready;
1396 }
1397
1398 #endif  // USE_CHRIS_IMPL
1399
1400
1401
1402
1403 /******************************************************************************
1404  
1405 Original CVS version of dbus-sysdeps.c
1406  
1407 ******************************************************************************/
1408 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
1409 /* dbus-sysdeps.c Wrappers around system/libc features (internal to D-Bus implementation)
1410  * 
1411  * Copyright (C) 2002, 2003  Red Hat, Inc.
1412  * Copyright (C) 2003 CodeFactory AB
1413  * Copyright (C) 2005 Novell, Inc.
1414  *
1415  * Licensed under the Academic Free License version 2.1
1416  * 
1417  * This program is free software; you can redistribute it and/or modify
1418  * it under the terms of the GNU General Public License as published by
1419  * the Free Software Foundation; either version 2 of the License, or
1420  * (at your option) any later version.
1421  *
1422  * This program is distributed in the hope that it will be useful,
1423  * but WITHOUT ANY WARRANTY; without even the implied warranty of
1424  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1425  * GNU General Public License for more details.
1426  * 
1427  * You should have received a copy of the GNU General Public License
1428  * along with this program; if not, write to the Free Software
1429  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
1430  *
1431  */
1432
1433
1434 /**
1435  * @addtogroup DBusInternalsUtils
1436  * @{
1437  */
1438
1439 int _dbus_mkdir (const char *path,
1440                  mode_t mode)
1441 {
1442   return _mkdir(path);
1443 }
1444
1445 /**
1446  * Exit the process, returning the given value.
1447  *
1448  * @param code the exit code
1449  */
1450 void
1451 _dbus_exit (int code)
1452 {
1453   _exit (code);
1454 }
1455
1456 /**
1457  * Creates a socket and connects to a socket at the given host 
1458  * and port. The connection fd is returned, and is set up as
1459  * nonblocking.
1460  *
1461  * @param host the host name to connect to
1462  * @param port the port to connect to
1463  * @param family the address family to listen on, NULL for all
1464  * @param error return location for error code
1465  * @returns connection file descriptor or -1 on error
1466  */
1467 int
1468 _dbus_connect_tcp_socket (const char     *host,
1469                           const char     *port,
1470                           const char     *family,
1471                           DBusError      *error)
1472 {
1473   int fd = -1, res;
1474   struct addrinfo hints;
1475   struct addrinfo *ai, *tmp;
1476
1477   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1478
1479   _dbus_win_startup_winsock ();
1480
1481   fd = socket (AF_INET, SOCK_STREAM, 0);
1482
1483   if (DBUS_SOCKET_IS_INVALID (fd))
1484     {
1485       DBUS_SOCKET_SET_ERRNO ();
1486       dbus_set_error (error,
1487                       _dbus_error_from_errno (errno),
1488                       "Failed to create socket: %s",
1489                       _dbus_strerror (errno));
1490
1491       return -1;
1492     }
1493
1494   _DBUS_ASSERT_ERROR_IS_CLEAR(error);
1495
1496   _DBUS_ZERO (hints);
1497
1498   if (!family)
1499     hints.ai_family = AF_UNSPEC;
1500   else if (!strcmp(family, "ipv4"))
1501     hints.ai_family = AF_INET;
1502   else if (!strcmp(family, "ipv6"))
1503     hints.ai_family = AF_INET6;
1504   else
1505     {
1506       dbus_set_error (error,
1507                       _dbus_error_from_errno (errno),
1508                       "Unknown address family %s", family);
1509       return -1;
1510     }
1511   hints.ai_protocol = IPPROTO_TCP;
1512   hints.ai_socktype = SOCK_STREAM;
1513 #ifdef AI_ADDRCONFIG
1514   hints.ai_flags = AI_ADDRCONFIG;
1515 #else
1516   hints.ai_flags = 0;
1517 #endif
1518
1519   if ((res = getaddrinfo(host, port, &hints, &ai)) != 0)
1520     {
1521       dbus_set_error (error,
1522                       _dbus_error_from_errno (errno),
1523                       "Failed to lookup host/port: \"%s:%s\": %s (%d)",
1524                       host, port, gai_strerror(res), res);
1525       closesocket (fd);
1526       return -1;
1527     }
1528
1529   tmp = ai;
1530   while (tmp)
1531     {
1532       if ((fd = socket (tmp->ai_family, SOCK_STREAM, 0)) < 0)
1533         {
1534           freeaddrinfo(ai);
1535       dbus_set_error (error,
1536                       _dbus_error_from_errno (errno),
1537                          "Failed to open socket: %s",
1538                          _dbus_strerror (errno));
1539           return -1;
1540         }
1541       _DBUS_ASSERT_ERROR_IS_CLEAR(error);
1542
1543       if (connect (fd, (struct sockaddr*) tmp->ai_addr, tmp->ai_addrlen) < 0)
1544         {
1545           closesocket(fd);
1546       fd = -1;
1547           tmp = tmp->ai_next;
1548           continue;
1549         }
1550
1551       break;
1552     }
1553   freeaddrinfo(ai);
1554
1555   if (fd == -1)
1556     {
1557       dbus_set_error (error,
1558                       _dbus_error_from_errno (errno),
1559                       "Failed to connect to socket \"%s:%s\" %s",
1560                       host, port, _dbus_strerror(errno));
1561       return -1;
1562     }
1563
1564
1565   if (!_dbus_set_fd_nonblocking (fd, error))
1566     {
1567       closesocket (fd);
1568       fd = -1;
1569
1570       return -1;
1571     }
1572
1573   return fd;
1574 }
1575
1576
1577 void
1578 _dbus_daemon_init(const char *host, dbus_uint32_t port);
1579
1580 /**
1581  * Creates a socket and binds it to the given path, then listens on
1582  * the socket. The socket is set to be nonblocking.  In case of port=0
1583  * a random free port is used and returned in the port parameter.
1584  * If inaddr_any is specified, the hostname is ignored.
1585  *
1586  * @param host the host name to listen on
1587  * @param port the port to listen on, if zero a free port will be used 
1588  * @param family the address family to listen on, NULL for all
1589  * @param retport string to return the actual port listened on
1590  * @param fds_p location to store returned file descriptors
1591  * @param error return location for errors
1592  * @returns the number of listening file descriptors or -1 on error
1593  */
1594
1595 int
1596 _dbus_listen_tcp_socket (const char     *host,
1597                          const char     *port,
1598                          const char     *family,
1599                          DBusString     *retport,
1600                          int           **fds_p,
1601                          DBusError      *error)
1602 {
1603   int nlisten_fd = 0, *listen_fd = NULL, res, i, port_num = -1;
1604   struct addrinfo hints;
1605   struct addrinfo *ai, *tmp;
1606
1607   *fds_p = NULL;
1608   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1609
1610   _dbus_win_startup_winsock ();
1611
1612   _DBUS_ZERO (hints);
1613
1614   if (!family)
1615     hints.ai_family = AF_UNSPEC;
1616   else if (!strcmp(family, "ipv4"))
1617     hints.ai_family = AF_INET;
1618   else if (!strcmp(family, "ipv6"))
1619     hints.ai_family = AF_INET6;
1620   else
1621     {
1622       dbus_set_error (error,
1623                       _dbus_error_from_errno (errno),
1624                       "Unknown address family %s", family);
1625       return -1;
1626     }
1627
1628   hints.ai_protocol = IPPROTO_TCP;
1629   hints.ai_socktype = SOCK_STREAM;
1630 #ifdef AI_ADDRCONFIG
1631   hints.ai_flags = AI_ADDRCONFIG | AI_PASSIVE;
1632 #else
1633   hints.ai_flags = AI_PASSIVE;
1634 #endif
1635
1636  redo_lookup_with_port:
1637   if ((res = getaddrinfo(host, port, &hints, &ai)) != 0 || !ai)
1638     {
1639       dbus_set_error (error,
1640                       _dbus_error_from_errno (errno),
1641                       "Failed to lookup host/port: \"%s:%s\": %s (%d)",
1642                       host ? host : "*", port, gai_strerror(res), res);
1643       return -1;
1644     }
1645
1646   tmp = ai;
1647   while (tmp)
1648     {
1649       int fd = -1, *newlisten_fd;
1650       if ((fd = socket (tmp->ai_family, SOCK_STREAM, 0)) < 0)
1651         {
1652           dbus_set_error (error,
1653                           _dbus_error_from_errno (errno),
1654                          "Failed to open socket: %s",
1655                          _dbus_strerror (errno));
1656           goto failed;
1657         }
1658       _DBUS_ASSERT_ERROR_IS_CLEAR(error);
1659
1660       if (bind (fd, (struct sockaddr*) tmp->ai_addr, tmp->ai_addrlen) == SOCKET_ERROR)
1661         {
1662           closesocket (fd);
1663           dbus_set_error (error, _dbus_error_from_errno (errno),
1664                           "Failed to bind socket \"%s:%s\": %s",
1665                           host ? host : "*", port, _dbus_strerror (errno));
1666           goto failed;
1667     }
1668
1669       if (listen (fd, 30 /* backlog */) == SOCKET_ERROR)
1670         {
1671           closesocket (fd);
1672           dbus_set_error (error, _dbus_error_from_errno (errno),
1673                           "Failed to listen on socket \"%s:%s\": %s",
1674                           host ? host : "*", port, _dbus_strerror (errno));
1675           goto failed;
1676         }
1677
1678       newlisten_fd = dbus_realloc(listen_fd, sizeof(int)*(nlisten_fd+1));
1679       if (!newlisten_fd)
1680     {
1681           closesocket (fd);
1682       dbus_set_error (error, _dbus_error_from_errno (errno),
1683                           "Failed to allocate file handle array: %s",
1684                           _dbus_strerror (errno));
1685           goto failed;
1686     }
1687       listen_fd = newlisten_fd;
1688       listen_fd[nlisten_fd] = fd;
1689       nlisten_fd++;
1690
1691       if (!_dbus_string_get_length(retport))
1692         {
1693           /* If the user didn't specify a port, or used 0, then
1694              the kernel chooses a port. After the first address
1695              is bound to, we need to force all remaining addresses
1696              to use the same port */
1697           if (!port || !strcmp(port, "0"))
1698             {
1699               sockaddr_gen addr;
1700               socklen_t addrlen = sizeof(addr);
1701               char portbuf[10];
1702
1703               if ((res = getsockname(fd, &addr.Address, &addrlen)) != 0)
1704     {
1705       dbus_set_error (error, _dbus_error_from_errno (errno),
1706                                   "Failed to resolve port \"%s:%s\": %s (%d)",
1707                                   host ? host : "*", port, gai_strerror(res), res);
1708                   goto failed;
1709                 }
1710               snprintf( portbuf, sizeof( portbuf ) - 1, "%d", addr.AddressIn.sin_port );
1711               if (!_dbus_string_append(retport, portbuf))
1712                 {
1713                   dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1714                   goto failed;
1715     }
1716
1717               /* Release current address list & redo lookup */
1718               port = _dbus_string_get_const_data(retport);
1719               freeaddrinfo(ai);
1720               goto redo_lookup_with_port;
1721             }
1722           else
1723             {
1724               if (!_dbus_string_append(retport, port))
1725                 {
1726                     dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1727                     goto failed;
1728                 }
1729             }
1730         }
1731   
1732       tmp = tmp->ai_next;
1733     }
1734   freeaddrinfo(ai);
1735   ai = NULL;
1736
1737   if (!nlisten_fd)
1738     {
1739       errno = WSAEADDRINUSE;
1740       dbus_set_error (error, _dbus_error_from_errno (errno),
1741                       "Failed to bind socket \"%s:%s\": %s",
1742                       host ? host : "*", port, _dbus_strerror (errno));
1743       return -1;
1744     }
1745
1746   sscanf(_dbus_string_get_const_data(retport), "%d", &port_num);
1747   _dbus_daemon_init(host, port_num);
1748
1749   for (i = 0 ; i < nlisten_fd ; i++)
1750     {
1751       if (!_dbus_set_fd_nonblocking (listen_fd[i], error))
1752         {
1753           goto failed;
1754         }
1755     }
1756
1757   *fds_p = listen_fd;
1758
1759   return nlisten_fd;
1760
1761  failed:
1762   if (ai)
1763     freeaddrinfo(ai);
1764   for (i = 0 ; i < nlisten_fd ; i++)
1765     closesocket (listen_fd[i]);
1766   dbus_free(listen_fd);
1767   return -1;
1768 }
1769
1770
1771 /**
1772  * Accepts a connection on a listening socket.
1773  * Handles EINTR for you.
1774  *
1775  * @param listen_fd the listen file descriptor
1776  * @returns the connection fd of the client, or -1 on error
1777  */
1778 int
1779 _dbus_accept  (int listen_fd)
1780 {
1781   int client_fd;
1782
1783  retry:
1784   client_fd = accept (listen_fd, NULL, NULL);
1785
1786   if (DBUS_SOCKET_IS_INVALID (client_fd))
1787     {
1788       DBUS_SOCKET_SET_ERRNO ();
1789       if (errno == EINTR)
1790         goto retry;
1791     }
1792
1793   _dbus_verbose ("client fd %d accepted\n", client_fd);
1794   
1795   return client_fd;
1796 }
1797
1798
1799
1800
1801 dbus_bool_t
1802 _dbus_send_credentials_socket (int            handle,
1803                         DBusError      *error)
1804 {
1805 /* FIXME: for the session bus credentials shouldn't matter (?), but
1806  * for the system bus they are presumably essential. A rough outline
1807  * of a way to implement the credential transfer would be this:
1808  *
1809  * client waits to *read* a byte.
1810  *
1811  * server creates a named pipe with a random name, sends a byte
1812  * contining its length, and its name.
1813  *
1814  * client reads the name, connects to it (using Win32 API).
1815  *
1816  * server waits for connection to the named pipe, then calls
1817  * ImpersonateNamedPipeClient(), notes its now-current credentials,
1818  * calls RevertToSelf(), closes its handles to the named pipe, and
1819  * is done. (Maybe there is some other way to get the SID of a named
1820  * pipe client without having to use impersonation?)
1821  *
1822  * client closes its handles and is done.
1823  * 
1824  * Ralf: Why not sending credentials over the given this connection ?
1825  * Using named pipes makes it impossible to be connected from a unix client.  
1826  *
1827  */
1828   int bytes_written;
1829   DBusString buf; 
1830
1831   _dbus_string_init_const_len (&buf, "\0", 1);
1832 again:
1833   bytes_written = _dbus_write_socket (handle, &buf, 0, 1 );
1834
1835   if (bytes_written < 0 && errno == EINTR)
1836     goto again;
1837
1838   if (bytes_written < 0)
1839     {
1840       dbus_set_error (error, _dbus_error_from_errno (errno),
1841                       "Failed to write credentials byte: %s",
1842                      _dbus_strerror (errno));
1843       return FALSE;
1844     }
1845   else if (bytes_written == 0)
1846     {
1847       dbus_set_error (error, DBUS_ERROR_IO_ERROR,
1848                       "wrote zero bytes writing credentials byte");
1849       return FALSE;
1850     }
1851   else
1852     {
1853       _dbus_assert (bytes_written == 1);
1854       _dbus_verbose ("wrote 1 zero byte, credential sending isn't implemented yet\n");
1855       return TRUE;
1856     }
1857   return TRUE;
1858 }
1859
1860 /**
1861  * Reads a single byte which must be nul (an error occurs otherwise),
1862  * and reads unix credentials if available. Fills in pid/uid/gid with
1863  * -1 if no credentials are available. Return value indicates whether
1864  * a byte was read, not whether we got valid credentials. On some
1865  * systems, such as Linux, reading/writing the byte isn't actually
1866  * required, but we do it anyway just to avoid multiple codepaths.
1867  * 
1868  * Fails if no byte is available, so you must select() first.
1869  *
1870  * The point of the byte is that on some systems we have to
1871  * use sendmsg()/recvmsg() to transmit credentials.
1872  *
1873  * @param client_fd the client file descriptor
1874  * @param credentials struct to fill with credentials of client
1875  * @param error location to store error code
1876  * @returns #TRUE on success
1877  */
1878 dbus_bool_t
1879 _dbus_read_credentials_socket  (int              handle,
1880                                 DBusCredentials *credentials,
1881                                 DBusError       *error)
1882 {
1883   int bytes_read = 0;
1884   DBusString buf;
1885   
1886   // could fail due too OOM
1887   if (_dbus_string_init(&buf))
1888     {
1889       bytes_read = _dbus_read_socket(handle, &buf, 1 );
1890
1891       if (bytes_read > 0) 
1892         _dbus_verbose("got one zero byte from server");
1893
1894       _dbus_string_free(&buf);
1895     }
1896
1897   _dbus_credentials_add_from_current_process (credentials);
1898   _dbus_verbose("FIXME: get faked credentials from current process");
1899
1900   return TRUE;
1901 }
1902
1903 /**
1904 * Checks to make sure the given directory is 
1905 * private to the user 
1906 *
1907 * @param dir the name of the directory
1908 * @param error error return
1909 * @returns #FALSE on failure
1910 **/
1911 dbus_bool_t
1912 _dbus_check_dir_is_private_to_user (DBusString *dir, DBusError *error)
1913 {
1914   const char *directory;
1915   struct stat sb;
1916
1917   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1918
1919   return TRUE;
1920 }
1921
1922
1923 /**
1924  * Appends the given filename to the given directory.
1925  *
1926  * @todo it might be cute to collapse multiple '/' such as "foo//"
1927  * concat "//bar"
1928  *
1929  * @param dir the directory name
1930  * @param next_component the filename
1931  * @returns #TRUE on success
1932  */
1933 dbus_bool_t
1934 _dbus_concat_dir_and_file (DBusString       *dir,
1935                            const DBusString *next_component)
1936 {
1937   dbus_bool_t dir_ends_in_slash;
1938   dbus_bool_t file_starts_with_slash;
1939
1940   if (_dbus_string_get_length (dir) == 0 ||
1941       _dbus_string_get_length (next_component) == 0)
1942     return TRUE;
1943
1944   dir_ends_in_slash =
1945     ('/' == _dbus_string_get_byte (dir, _dbus_string_get_length (dir) - 1) ||
1946      '\\' == _dbus_string_get_byte (dir, _dbus_string_get_length (dir) - 1));
1947
1948   file_starts_with_slash =
1949     ('/' == _dbus_string_get_byte (next_component, 0) ||
1950      '\\' == _dbus_string_get_byte (next_component, 0));
1951
1952   if (dir_ends_in_slash && file_starts_with_slash)
1953     {
1954       _dbus_string_shorten (dir, 1);
1955     }
1956   else if (!(dir_ends_in_slash || file_starts_with_slash))
1957     {
1958       if (!_dbus_string_append_byte (dir, '\\'))
1959         return FALSE;
1960     }
1961
1962   return _dbus_string_copy (next_component, 0, dir,
1963                             _dbus_string_get_length (dir));
1964 }
1965
1966 /*---------------- DBusCredentials ----------------------------------
1967
1968 /**
1969  * Adds the credentials corresponding to the given username.
1970  *
1971  * @param credentials credentials to fill in 
1972  * @param username the username
1973  * @returns #TRUE if the username existed and we got some credentials
1974  */
1975 dbus_bool_t
1976 _dbus_credentials_add_from_user (DBusCredentials  *credentials,
1977                                      const DBusString *username)
1978 {
1979   return _dbus_credentials_add_windows_sid (credentials,
1980                     _dbus_string_get_const_data(username));
1981 }
1982
1983 /**
1984  * Adds the credentials of the current process to the
1985  * passed-in credentials object.
1986  *
1987  * @param credentials credentials to add to
1988  * @returns #FALSE if no memory; does not properly roll back on failure, so only some credentials may have been added
1989  */
1990
1991 dbus_bool_t
1992 _dbus_credentials_add_from_current_process (DBusCredentials *credentials)
1993 {
1994   dbus_bool_t retval = FALSE;
1995   char *sid = NULL;
1996
1997   if (!_dbus_getsid(&sid))
1998     goto failed;
1999
2000   if (!_dbus_credentials_add_unix_pid(credentials, _dbus_getpid()))
2001     goto failed;
2002
2003   if (!_dbus_credentials_add_windows_sid (credentials,sid))
2004     goto failed;
2005
2006   retval = TRUE;
2007   goto end;
2008 failed:
2009   retval = FALSE;
2010 end:
2011   if (sid)
2012     LocalFree(sid);
2013
2014   return retval;
2015 }
2016
2017 /**
2018  * Append to the string the identity we would like to have when we
2019  * authenticate, on UNIX this is the current process UID and on
2020  * Windows something else, probably a Windows SID string.  No escaping
2021  * is required, that is done in dbus-auth.c. The username here
2022  * need not be anything human-readable, it can be the machine-readable
2023  * form i.e. a user id.
2024  * 
2025  * @param str the string to append to
2026  * @returns #FALSE on no memory
2027  * @todo to which class belongs this 
2028  */
2029 dbus_bool_t
2030 _dbus_append_user_from_current_process (DBusString *str)
2031 {
2032   dbus_bool_t retval = FALSE;
2033   char *sid = NULL;
2034
2035   if (!_dbus_getsid(&sid))
2036     return FALSE;
2037
2038   retval = _dbus_string_append (str,sid);
2039
2040   LocalFree(sid);
2041   return retval;
2042 }
2043
2044 /**
2045  * Gets our process ID
2046  * @returns process ID
2047  */
2048 unsigned long
2049 _dbus_getpid (void)
2050 {
2051   return GetCurrentProcessId ();
2052 }
2053
2054 /** nanoseconds in a second */
2055 #define NANOSECONDS_PER_SECOND       1000000000
2056 /** microseconds in a second */
2057 #define MICROSECONDS_PER_SECOND      1000000
2058 /** milliseconds in a second */
2059 #define MILLISECONDS_PER_SECOND      1000
2060 /** nanoseconds in a millisecond */
2061 #define NANOSECONDS_PER_MILLISECOND  1000000
2062 /** microseconds in a millisecond */
2063 #define MICROSECONDS_PER_MILLISECOND 1000
2064
2065 /**
2066  * Sleeps the given number of milliseconds.
2067  * @param milliseconds number of milliseconds
2068  */
2069 void
2070 _dbus_sleep_milliseconds (int milliseconds)
2071 {
2072   Sleep (milliseconds);
2073 }
2074
2075
2076 /**
2077  * Get current time, as in gettimeofday().
2078  *
2079  * @param tv_sec return location for number of seconds
2080  * @param tv_usec return location for number of microseconds
2081  */
2082 void
2083 _dbus_get_current_time (long *tv_sec,
2084                         long *tv_usec)
2085 {
2086   FILETIME ft;
2087   dbus_uint64_t *time64 = (dbus_uint64_t *) &ft;
2088
2089   GetSystemTimeAsFileTime (&ft);
2090
2091   /* Convert from 100s of nanoseconds since 1601-01-01
2092   * to Unix epoch. Yes, this is Y2038 unsafe.
2093   */
2094   *time64 -= DBUS_INT64_CONSTANT (116444736000000000);
2095   *time64 /= 10;
2096
2097   if (tv_sec)
2098     *tv_sec = *time64 / 1000000;
2099
2100   if (tv_usec)
2101     *tv_usec = *time64 % 1000000;
2102 }
2103
2104
2105 /**
2106  * signal (SIGPIPE, SIG_IGN);
2107  */
2108 void
2109 _dbus_disable_sigpipe (void)
2110 {
2111     _dbus_verbose("FIXME: implement _dbus_disable_sigpipe (void)\n");
2112 }
2113
2114
2115 /**
2116  * Appends the contents of the given file to the string,
2117  * returning error code. At the moment, won't open a file
2118  * more than a megabyte in size.
2119  *
2120  * @param str the string to append to
2121  * @param filename filename to load
2122  * @param error place to set an error
2123  * @returns #FALSE if error was set
2124  */
2125 dbus_bool_t
2126 _dbus_file_get_contents (DBusString       *str,
2127                          const DBusString *filename,
2128                          DBusError        *error)
2129 {
2130   DBusFile file;
2131   struct stat sb;
2132   int orig_len;
2133   int total;
2134   const char *filename_c;
2135
2136   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2137
2138   filename_c = _dbus_string_get_const_data (filename);
2139
2140   /* O_BINARY useful on Cygwin and Win32 */
2141   if (!_dbus_file_open (&file, filename_c, O_RDONLY | O_BINARY, -1))
2142     {
2143       dbus_set_error (error, _dbus_error_from_errno (errno),
2144                       "Failed to open \"%s\": %s",
2145                       filename_c,
2146                       _dbus_strerror (errno));
2147       return FALSE;
2148     }
2149
2150   if (!_dbus_fstat (&file, &sb))
2151     {
2152       dbus_set_error (error, _dbus_error_from_errno (errno),
2153                       "Failed to stat \"%s\": %s",
2154                       filename_c,
2155                       _dbus_strerror (errno));
2156
2157       _dbus_verbose ("fstat() failed: %s",
2158                      _dbus_strerror (errno));
2159
2160       _dbus_file_close (&file, NULL);
2161
2162       return FALSE;
2163     }
2164
2165   if (sb.st_size > _DBUS_ONE_MEGABYTE)
2166     {
2167       dbus_set_error (error, DBUS_ERROR_FAILED,
2168                       "File size %lu of \"%s\" is too large.",
2169                       (unsigned long) sb.st_size, filename_c);
2170       _dbus_file_close (&file, NULL);
2171       return FALSE;
2172     }
2173
2174   total = 0;
2175   orig_len = _dbus_string_get_length (str);
2176   if (sb.st_size > 0 && S_ISREG (sb.st_mode))
2177     {
2178       int bytes_read;
2179
2180       while (total < (int) sb.st_size)
2181         {
2182           bytes_read = _dbus_file_read (&file, str,
2183                                         sb.st_size - total);
2184           if (bytes_read <= 0)
2185             {
2186               dbus_set_error (error, _dbus_error_from_errno (errno),
2187                               "Error reading \"%s\": %s",
2188                               filename_c,
2189                               _dbus_strerror (errno));
2190
2191               _dbus_verbose ("read() failed: %s",
2192                              _dbus_strerror (errno));
2193
2194               _dbus_file_close (&file, NULL);
2195               _dbus_string_set_length (str, orig_len);
2196               return FALSE;
2197             }
2198           else
2199             total += bytes_read;
2200         }
2201
2202       _dbus_file_close (&file, NULL);
2203       return TRUE;
2204     }
2205   else if (sb.st_size != 0)
2206     {
2207       _dbus_verbose ("Can only open regular files at the moment.\n");
2208       dbus_set_error (error, DBUS_ERROR_FAILED,
2209                       "\"%s\" is not a regular file",
2210                       filename_c);
2211       _dbus_file_close (&file, NULL);
2212       return FALSE;
2213     }
2214   else
2215     {
2216       _dbus_file_close (&file, NULL);
2217       return TRUE;
2218     }
2219 }
2220
2221 /**
2222  * Writes a string out to a file. If the file exists,
2223  * it will be atomically overwritten by the new data.
2224  *
2225  * @param str the string to write out
2226  * @param filename the file to save string to
2227  * @param error error to be filled in on failure
2228  * @returns #FALSE on failure
2229  */
2230 dbus_bool_t
2231 _dbus_string_save_to_file (const DBusString *str,
2232                            const DBusString *filename,
2233                            DBusError        *error)
2234 {
2235   DBusFile file;
2236   int bytes_to_write;
2237   const char *filename_c;
2238   DBusString tmp_filename;
2239   const char *tmp_filename_c;
2240   int total;
2241   dbus_bool_t need_unlink;
2242   dbus_bool_t retval;
2243
2244   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2245
2246   retval = FALSE;
2247   need_unlink = FALSE;
2248
2249   if (!_dbus_string_init (&tmp_filename))
2250     {
2251       dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
2252       return FALSE;
2253     }
2254
2255   if (!_dbus_string_copy (filename, 0, &tmp_filename, 0))
2256     {
2257       dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
2258       _dbus_string_free (&tmp_filename);
2259       return FALSE;
2260     }
2261
2262   if (!_dbus_string_append (&tmp_filename, "."))
2263     {
2264       dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
2265       _dbus_string_free (&tmp_filename);
2266       return FALSE;
2267     }
2268
2269 #define N_TMP_FILENAME_RANDOM_BYTES 8
2270   if (!_dbus_generate_random_ascii (&tmp_filename, N_TMP_FILENAME_RANDOM_BYTES))
2271     {
2272       dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
2273       _dbus_string_free (&tmp_filename);
2274       return FALSE;
2275     }
2276
2277   filename_c = _dbus_string_get_const_data (filename);
2278   tmp_filename_c = _dbus_string_get_const_data (&tmp_filename);
2279
2280   if (!_dbus_file_open (&file, tmp_filename_c, O_WRONLY | O_BINARY | O_EXCL | O_CREAT,
2281                         0600))
2282     {
2283       dbus_set_error (error, _dbus_error_from_errno (errno),
2284                       "Could not create %s: %s", tmp_filename_c,
2285                       _dbus_strerror (errno));
2286       goto out;
2287     }
2288
2289   need_unlink = TRUE;
2290
2291   total = 0;
2292   bytes_to_write = _dbus_string_get_length (str);
2293
2294   while (total < bytes_to_write)
2295     {
2296       int bytes_written;
2297
2298       bytes_written = _dbus_file_write (&file, str, total,
2299                                         bytes_to_write - total);
2300
2301       if (bytes_written <= 0)
2302         {
2303           dbus_set_error (error, _dbus_error_from_errno (errno),
2304                           "Could not write to %s: %s", tmp_filename_c,
2305                           _dbus_strerror (errno));
2306
2307           goto out;
2308         }
2309
2310       total += bytes_written;
2311     }
2312
2313   if (!_dbus_file_close (&file, NULL))
2314     {
2315       dbus_set_error (error, _dbus_error_from_errno (errno),
2316                       "Could not close file %s: %s",
2317                       tmp_filename_c, _dbus_strerror (errno));
2318
2319       goto out;
2320     }
2321
2322
2323   if ((unlink (filename_c) == -1 && errno != ENOENT) ||
2324        rename (tmp_filename_c, filename_c) < 0)
2325     {
2326       dbus_set_error (error, _dbus_error_from_errno (errno),
2327                       "Could not rename %s to %s: %s",
2328                       tmp_filename_c, filename_c,
2329                       _dbus_strerror (errno));
2330
2331       goto out;
2332     }
2333
2334   need_unlink = FALSE;
2335
2336   retval = TRUE;
2337
2338 out:
2339   /* close first, then unlink, to prevent ".nfs34234235" garbage
2340    * files
2341    */
2342
2343   if (_dbus_is_valid_file(&file))
2344     _dbus_file_close (&file, NULL);
2345
2346   if (need_unlink && unlink (tmp_filename_c) < 0)
2347     _dbus_verbose ("Failed to unlink temp file %s: %s\n",
2348                    tmp_filename_c, _dbus_strerror (errno));
2349
2350   _dbus_string_free (&tmp_filename);
2351
2352   if (!retval)
2353     _DBUS_ASSERT_ERROR_IS_SET (error);
2354
2355   return retval;
2356 }
2357
2358
2359 /** Creates the given file, failing if the file already exists.
2360  *
2361  * @param filename the filename
2362  * @param error error location
2363  * @returns #TRUE if we created the file and it didn't exist
2364  */
2365 dbus_bool_t
2366 _dbus_create_file_exclusively (const DBusString *filename,
2367                                DBusError        *error)
2368 {
2369   DBusFile file;
2370   const char *filename_c;
2371
2372   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2373
2374   filename_c = _dbus_string_get_const_data (filename);
2375
2376   if (!_dbus_file_open (&file, filename_c, O_WRONLY | O_BINARY | O_EXCL | O_CREAT,
2377                         0600))
2378     {
2379       dbus_set_error (error,
2380                       DBUS_ERROR_FAILED,
2381                       "Could not create file %s: %s\n",
2382                       filename_c,
2383                       _dbus_strerror (errno));
2384       return FALSE;
2385     }
2386
2387   if (!_dbus_file_close (&file, NULL))
2388     {
2389       dbus_set_error (error,
2390                       DBUS_ERROR_FAILED,
2391                       "Could not close file %s: %s\n",
2392                       filename_c,
2393                       _dbus_strerror (errno));
2394       return FALSE;
2395     }
2396
2397   return TRUE;
2398 }
2399
2400
2401 /**
2402  * Creates a directory; succeeds if the directory
2403  * is created or already existed.
2404  *
2405  * @param filename directory filename
2406  * @param error initialized error object
2407  * @returns #TRUE on success
2408  */
2409 dbus_bool_t
2410 _dbus_create_directory (const DBusString *filename,
2411                         DBusError        *error)
2412 {
2413   const char *filename_c;
2414
2415   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2416
2417   filename_c = _dbus_string_get_const_data (filename);
2418
2419   if (_dbus_mkdir (filename_c, 0700) < 0)
2420     {
2421       if (errno == EEXIST)
2422         return TRUE;
2423
2424       dbus_set_error (error, DBUS_ERROR_FAILED,
2425                       "Failed to create directory %s: %s\n",
2426                       filename_c, _dbus_strerror (errno));
2427       return FALSE;
2428     }
2429   else
2430     return TRUE;
2431 }
2432
2433
2434 static void
2435 pseudorandom_generate_random_bytes_buffer (char *buffer,
2436     int   n_bytes)
2437 {
2438   long tv_usec;
2439   int i;
2440
2441   /* fall back to pseudorandom */
2442   _dbus_verbose ("Falling back to pseudorandom for %d bytes\n",
2443                  n_bytes);
2444
2445   _dbus_get_current_time (NULL, &tv_usec);
2446   srand (tv_usec);
2447
2448   i = 0;
2449   while (i < n_bytes)
2450     {
2451       double r;
2452       unsigned int b;
2453
2454       r = rand ();
2455       b = (r / (double) RAND_MAX) * 255.0;
2456
2457       buffer[i] = b;
2458
2459       ++i;
2460     }
2461 }
2462
2463 static dbus_bool_t
2464 pseudorandom_generate_random_bytes (DBusString *str,
2465                                     int         n_bytes)
2466 {
2467   int old_len;
2468   char *p;
2469
2470   old_len = _dbus_string_get_length (str);
2471
2472   if (!_dbus_string_lengthen (str, n_bytes))
2473     return FALSE;
2474
2475   p = _dbus_string_get_data_len (str, old_len, n_bytes);
2476
2477   pseudorandom_generate_random_bytes_buffer (p, n_bytes);
2478
2479   return TRUE;
2480 }
2481
2482 /**
2483  * Gets the temporary files directory by inspecting the environment variables 
2484  * TMPDIR, TMP, and TEMP in that order. If none of those are set "/tmp" is returned
2485  *
2486  * @returns location of temp directory
2487  */
2488 const char*
2489 _dbus_get_tmpdir(void)
2490 {
2491   static const char* tmpdir = NULL;
2492
2493   if (tmpdir == NULL)
2494     {
2495       if (tmpdir == NULL)
2496         tmpdir = getenv("TMP");
2497       if (tmpdir == NULL)
2498         tmpdir = getenv("TEMP");
2499       if (tmpdir == NULL)
2500         tmpdir = getenv("TMPDIR");
2501       if (tmpdir == NULL)
2502           tmpdir = "C:\\Temp";
2503     }
2504
2505   _dbus_assert(tmpdir != NULL);
2506
2507   return tmpdir;
2508 }
2509
2510
2511 /**
2512  * Deletes the given file.
2513  *
2514  * @param filename the filename
2515  * @param error error location
2516  * 
2517  * @returns #TRUE if unlink() succeeded
2518  */
2519 dbus_bool_t
2520 _dbus_delete_file (const DBusString *filename,
2521                    DBusError        *error)
2522 {
2523   const char *filename_c;
2524
2525   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2526
2527   filename_c = _dbus_string_get_const_data (filename);
2528
2529   if (unlink (filename_c) < 0)
2530     {
2531       dbus_set_error (error, DBUS_ERROR_FAILED,
2532                       "Failed to delete file %s: %s\n",
2533                       filename_c, _dbus_strerror (errno));
2534       return FALSE;
2535     }
2536   else
2537     return TRUE;
2538 }
2539
2540 /**
2541  * Generates the given number of random bytes,
2542  * using the best mechanism we can come up with.
2543  *
2544  * @param str the string
2545  * @param n_bytes the number of random bytes to append to string
2546  * @returns #TRUE on success, #FALSE if no memory
2547  */
2548 dbus_bool_t
2549 _dbus_generate_random_bytes (DBusString *str,
2550                              int         n_bytes)
2551 {
2552   return pseudorandom_generate_random_bytes (str, n_bytes);
2553 }
2554
2555 #if !defined (DBUS_DISABLE_ASSERT) || defined(DBUS_BUILD_TESTS)
2556
2557 #ifdef _MSC_VER
2558 # ifdef BACKTRACES
2559 #  undef BACKTRACES
2560 # endif
2561 #else
2562 # define BACKTRACES
2563 #endif
2564
2565 #ifdef BACKTRACES
2566 /*
2567  * Backtrace Generator
2568  *
2569  * Copyright 2004 Eric Poech
2570  * Copyright 2004 Robert Shearman
2571  *
2572  * This library is free software; you can redistribute it and/or
2573  * modify it under the terms of the GNU Lesser General Public
2574  * License as published by the Free Software Foundation; either
2575  * version 2.1 of the License, or (at your option) any later version.
2576  *
2577  * This library is distributed in the hope that it will be useful,
2578  * but WITHOUT ANY WARRANTY; without even the implied warranty of
2579  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
2580  * Lesser General Public License for more details.
2581  *
2582  * You should have received a copy of the GNU Lesser General Public
2583  * License along with this library; if not, write to the Free Software
2584  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
2585  */
2586
2587 #include <winver.h>
2588 #include <imagehlp.h>
2589 #include <stdio.h>
2590
2591 #define DPRINTF _dbus_warn
2592
2593 #ifdef _MSC_VER
2594 #define BOOL int
2595
2596 #define __i386__
2597 #endif
2598
2599 //#define MAKE_FUNCPTR(f) static typeof(f) * p##f
2600
2601 //MAKE_FUNCPTR(StackWalk);
2602 //MAKE_FUNCPTR(SymGetModuleBase);
2603 //MAKE_FUNCPTR(SymFunctionTableAccess);
2604 //MAKE_FUNCPTR(SymInitialize);
2605 //MAKE_FUNCPTR(SymGetSymFromAddr);
2606 //MAKE_FUNCPTR(SymGetModuleInfo);
2607 static BOOL (WINAPI *pStackWalk)(
2608   DWORD MachineType,
2609   HANDLE hProcess,
2610   HANDLE hThread,
2611   LPSTACKFRAME StackFrame,
2612   PVOID ContextRecord,
2613   PREAD_PROCESS_MEMORY_ROUTINE ReadMemoryRoutine,
2614   PFUNCTION_TABLE_ACCESS_ROUTINE FunctionTableAccessRoutine,
2615   PGET_MODULE_BASE_ROUTINE GetModuleBaseRoutine,
2616   PTRANSLATE_ADDRESS_ROUTINE TranslateAddress
2617 );
2618 static DWORD (WINAPI *pSymGetModuleBase)(
2619   HANDLE hProcess,
2620   DWORD dwAddr
2621 );
2622 static PVOID  (WINAPI *pSymFunctionTableAccess)(
2623   HANDLE hProcess,
2624   DWORD AddrBase
2625 );
2626 static BOOL  (WINAPI *pSymInitialize)(
2627   HANDLE hProcess,
2628   PSTR UserSearchPath,
2629   BOOL fInvadeProcess
2630 );
2631 static BOOL  (WINAPI *pSymGetSymFromAddr)(
2632   HANDLE hProcess,
2633   DWORD Address,
2634   PDWORD Displacement,
2635   PIMAGEHLP_SYMBOL Symbol
2636 );
2637 static BOOL  (WINAPI *pSymGetModuleInfo)(
2638   HANDLE hProcess,
2639   DWORD dwAddr,
2640   PIMAGEHLP_MODULE ModuleInfo
2641 );
2642 static DWORD  (WINAPI *pSymSetOptions)(
2643   DWORD SymOptions
2644 );
2645
2646
2647 static BOOL init_backtrace()
2648 {
2649     HMODULE hmodDbgHelp = LoadLibraryA("dbghelp");
2650 /*
2651     #define GETFUNC(x) \
2652     p##x = (typeof(x)*)GetProcAddress(hmodDbgHelp, #x); \
2653     if (!p##x) \
2654     { \
2655         return FALSE; \
2656     }
2657     */
2658
2659
2660 //    GETFUNC(StackWalk);
2661 //    GETFUNC(SymGetModuleBase);
2662 //    GETFUNC(SymFunctionTableAccess);
2663 //    GETFUNC(SymInitialize);
2664 //    GETFUNC(SymGetSymFromAddr);
2665 //    GETFUNC(SymGetModuleInfo);
2666
2667 #define FUNC(x) #x
2668
2669       pStackWalk = (BOOL  (WINAPI *)(
2670 DWORD MachineType,
2671 HANDLE hProcess,
2672 HANDLE hThread,
2673 LPSTACKFRAME StackFrame,
2674 PVOID ContextRecord,
2675 PREAD_PROCESS_MEMORY_ROUTINE ReadMemoryRoutine,
2676 PFUNCTION_TABLE_ACCESS_ROUTINE FunctionTableAccessRoutine,
2677 PGET_MODULE_BASE_ROUTINE GetModuleBaseRoutine,
2678 PTRANSLATE_ADDRESS_ROUTINE TranslateAddress
2679 ))GetProcAddress (hmodDbgHelp, FUNC(StackWalk));
2680     pSymGetModuleBase=(DWORD  (WINAPI *)(
2681   HANDLE hProcess,
2682   DWORD dwAddr
2683 ))GetProcAddress (hmodDbgHelp, FUNC(SymGetModuleBase));
2684     pSymFunctionTableAccess=(PVOID  (WINAPI *)(
2685   HANDLE hProcess,
2686   DWORD AddrBase
2687 ))GetProcAddress (hmodDbgHelp, FUNC(SymFunctionTableAccess));
2688     pSymInitialize = (BOOL  (WINAPI *)(
2689   HANDLE hProcess,
2690   PSTR UserSearchPath,
2691   BOOL fInvadeProcess
2692 ))GetProcAddress (hmodDbgHelp, FUNC(SymInitialize));
2693     pSymGetSymFromAddr = (BOOL  (WINAPI *)(
2694   HANDLE hProcess,
2695   DWORD Address,
2696   PDWORD Displacement,
2697   PIMAGEHLP_SYMBOL Symbol
2698 ))GetProcAddress (hmodDbgHelp, FUNC(SymGetSymFromAddr));
2699     pSymGetModuleInfo = (BOOL  (WINAPI *)(
2700   HANDLE hProcess,
2701   DWORD dwAddr,
2702   PIMAGEHLP_MODULE ModuleInfo
2703 ))GetProcAddress (hmodDbgHelp, FUNC(SymGetModuleInfo));
2704 pSymSetOptions = (DWORD  (WINAPI *)(
2705 DWORD SymOptions
2706 ))GetProcAddress (hmodDbgHelp, FUNC(SymSetOptions));
2707
2708
2709     pSymSetOptions(SYMOPT_UNDNAME);
2710
2711     pSymInitialize(GetCurrentProcess(), NULL, TRUE);
2712
2713     return TRUE;
2714 }
2715
2716 static void dump_backtrace_for_thread(HANDLE hThread)
2717 {
2718     STACKFRAME sf;
2719     CONTEXT context;
2720     DWORD dwImageType;
2721
2722     if (!pStackWalk)
2723         if (!init_backtrace())
2724             return;
2725
2726     /* can't use this function for current thread as GetThreadContext
2727      * doesn't support getting context from current thread */
2728     if (hThread == GetCurrentThread())
2729         return;
2730
2731     DPRINTF("Backtrace:\n");
2732
2733     _DBUS_ZERO(context);
2734     context.ContextFlags = CONTEXT_FULL;
2735
2736     SuspendThread(hThread);
2737
2738     if (!GetThreadContext(hThread, &context))
2739     {
2740         DPRINTF("Couldn't get thread context (error %ld)\n", GetLastError());
2741         ResumeThread(hThread);
2742         return;
2743     }
2744
2745     _DBUS_ZERO(sf);
2746
2747 #ifdef __i386__
2748     sf.AddrFrame.Offset = context.Ebp;
2749     sf.AddrFrame.Mode = AddrModeFlat;
2750     sf.AddrPC.Offset = context.Eip;
2751     sf.AddrPC.Mode = AddrModeFlat;
2752     dwImageType = IMAGE_FILE_MACHINE_I386;
2753 #else
2754 # error You need to fill in the STACKFRAME structure for your architecture
2755 #endif
2756
2757     while (pStackWalk(dwImageType, GetCurrentProcess(),
2758                      hThread, &sf, &context, NULL, pSymFunctionTableAccess,
2759                      pSymGetModuleBase, NULL))
2760     {
2761         BYTE buffer[256];
2762         IMAGEHLP_SYMBOL * pSymbol = (IMAGEHLP_SYMBOL *)buffer;
2763         DWORD dwDisplacement;
2764
2765         pSymbol->SizeOfStruct = sizeof(IMAGEHLP_SYMBOL);
2766         pSymbol->MaxNameLength = sizeof(buffer) - sizeof(IMAGEHLP_SYMBOL) + 1;
2767
2768         if (!pSymGetSymFromAddr(GetCurrentProcess(), sf.AddrPC.Offset,
2769                                 &dwDisplacement, pSymbol))
2770         {
2771             IMAGEHLP_MODULE ModuleInfo;
2772             ModuleInfo.SizeOfStruct = sizeof(ModuleInfo);
2773
2774             if (!pSymGetModuleInfo(GetCurrentProcess(), sf.AddrPC.Offset,
2775                                    &ModuleInfo))
2776                 DPRINTF("1\t%p\n", (void*)sf.AddrPC.Offset);
2777             else
2778                 DPRINTF("2\t%s+0x%lx\n", ModuleInfo.ImageName,
2779                     sf.AddrPC.Offset - ModuleInfo.BaseOfImage);
2780         }
2781         else if (dwDisplacement)
2782             DPRINTF("3\t%s+0x%lx\n", pSymbol->Name, dwDisplacement);
2783         else
2784             DPRINTF("4\t%s\n", pSymbol->Name);
2785     }
2786
2787     ResumeThread(hThread);
2788 }
2789
2790 static DWORD WINAPI dump_thread_proc(LPVOID lpParameter)
2791 {
2792     dump_backtrace_for_thread((HANDLE)lpParameter);
2793     return 0;
2794 }
2795
2796 /* cannot get valid context from current thread, so we have to execute
2797  * backtrace from another thread */
2798 static void dump_backtrace()
2799 {
2800     HANDLE hCurrentThread;
2801     HANDLE hThread;
2802     DWORD dwThreadId;
2803     DuplicateHandle(GetCurrentProcess(), GetCurrentThread(),
2804         GetCurrentProcess(), &hCurrentThread, 0, FALSE, DUPLICATE_SAME_ACCESS);
2805     hThread = CreateThread(NULL, 0, dump_thread_proc, (LPVOID)hCurrentThread,
2806         0, &dwThreadId);
2807     WaitForSingleObject(hThread, INFINITE);
2808     CloseHandle(hThread);
2809     CloseHandle(hCurrentThread);
2810 }
2811
2812 void _dbus_print_backtrace(void)
2813 {
2814   init_backtrace();
2815   dump_backtrace();
2816 }
2817 #else
2818 void _dbus_print_backtrace(void)
2819 {
2820   _dbus_verbose ("  D-Bus not compiled with backtrace support\n");
2821 }
2822 #endif
2823
2824 static dbus_uint32_t fromAscii(char ascii)
2825 {
2826     if(ascii >= '0' && ascii <= '9')
2827         return ascii - '0';
2828     if(ascii >= 'A' && ascii <= 'F')
2829         return ascii - 'A' + 10;
2830     if(ascii >= 'a' && ascii <= 'f')
2831         return ascii - 'a' + 10;
2832     return 0;    
2833 }
2834
2835 dbus_bool_t _dbus_read_local_machine_uuid   (DBusGUID         *machine_id,
2836                                              dbus_bool_t       create_if_not_found,
2837                                              DBusError        *error)
2838 {
2839 #ifdef DBUS_WINCE
2840         return TRUE;
2841   // TODO
2842 #else
2843     HW_PROFILE_INFOA info;
2844     char *lpc = &info.szHwProfileGuid[0];
2845     dbus_uint32_t u;
2846
2847     //  the hw-profile guid lives long enough
2848     if(!GetCurrentHwProfileA(&info))
2849       {
2850         dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL); // FIXME
2851         return FALSE;  
2852       }
2853
2854     // Form: {12340001-4980-1920-6788-123456789012}
2855     lpc++;
2856     // 12340001
2857     u = ((fromAscii(lpc[0]) <<  0) |
2858          (fromAscii(lpc[1]) <<  4) |
2859          (fromAscii(lpc[2]) <<  8) |
2860          (fromAscii(lpc[3]) << 12) |
2861          (fromAscii(lpc[4]) << 16) |
2862          (fromAscii(lpc[5]) << 20) |
2863          (fromAscii(lpc[6]) << 24) |
2864          (fromAscii(lpc[7]) << 28));
2865     machine_id->as_uint32s[0] = u;
2866
2867     lpc += 9;
2868     // 4980-1920
2869     u = ((fromAscii(lpc[0]) <<  0) |
2870          (fromAscii(lpc[1]) <<  4) |
2871          (fromAscii(lpc[2]) <<  8) |
2872          (fromAscii(lpc[3]) << 12) |
2873          (fromAscii(lpc[5]) << 16) |
2874          (fromAscii(lpc[6]) << 20) |
2875          (fromAscii(lpc[7]) << 24) |
2876          (fromAscii(lpc[8]) << 28));
2877     machine_id->as_uint32s[1] = u;
2878     
2879     lpc += 10;
2880     // 6788-1234
2881     u = ((fromAscii(lpc[0]) <<  0) |
2882          (fromAscii(lpc[1]) <<  4) |
2883          (fromAscii(lpc[2]) <<  8) |
2884          (fromAscii(lpc[3]) << 12) |
2885          (fromAscii(lpc[5]) << 16) |
2886          (fromAscii(lpc[6]) << 20) |
2887          (fromAscii(lpc[7]) << 24) |
2888          (fromAscii(lpc[8]) << 28));
2889     machine_id->as_uint32s[2] = u;
2890     
2891     lpc += 9;
2892     // 56789012
2893     u = ((fromAscii(lpc[0]) <<  0) |
2894          (fromAscii(lpc[1]) <<  4) |
2895          (fromAscii(lpc[2]) <<  8) |
2896          (fromAscii(lpc[3]) << 12) |
2897          (fromAscii(lpc[4]) << 16) |
2898          (fromAscii(lpc[5]) << 20) |
2899          (fromAscii(lpc[6]) << 24) |
2900          (fromAscii(lpc[7]) << 28));
2901     machine_id->as_uint32s[3] = u;
2902 #endif
2903     return TRUE;
2904 }
2905
2906 static
2907 HANDLE _dbus_global_lock (const char *mutexname)
2908 {
2909   HANDLE mutex;
2910   DWORD gotMutex;
2911
2912   mutex = CreateMutex( NULL, FALSE, mutexname );
2913   if( !mutex )
2914     {
2915       return FALSE;
2916     }
2917
2918    gotMutex = WaitForSingleObject( mutex, INFINITE );
2919    switch( gotMutex )
2920      {
2921        case WAIT_ABANDONED:
2922                ReleaseMutex (mutex);
2923                CloseHandle (mutex);
2924                return 0;
2925        case WAIT_FAILED:
2926        case WAIT_TIMEOUT:
2927                return 0;
2928      }
2929
2930    return mutex;
2931 }
2932
2933 static
2934 void _dbus_global_unlock (HANDLE mutex)
2935 {
2936   ReleaseMutex (mutex);
2937   CloseHandle (mutex); 
2938 }
2939
2940 // for proper cleanup in dbus-daemon
2941 static HANDLE hDBusDaemonMutex = NULL;
2942 static HANDLE hDBusSharedMem = NULL;
2943 // sync _dbus_daemon_init, _dbus_daemon_uninit and _dbus_daemon_already_runs
2944 static const char *cUniqueDBusInitMutex = "UniqueDBusInitMutex";
2945 // sync _dbus_get_autolaunch_address
2946 static const char *cDBusAutolaunchMutex = "DBusAutolaunchMutex";
2947 // mutex to determine if dbus-daemon is already started (per user)
2948 static const char *cDBusDaemonMutex = "DBusDaemonMutex";
2949 // named shm for dbus adress info (per user)
2950 #ifdef _DEBUG
2951 static const char *cDBusDaemonAddressInfo = "DBusDaemonAddressInfoDebug";
2952 #else
2953 static const char *cDBusDaemonAddressInfo = "DBusDaemonAddressInfo";
2954 #endif
2955
2956 void
2957 _dbus_daemon_init(const char *host, dbus_uint32_t port)
2958 {
2959   HANDLE lock;
2960   char *adr = NULL;
2961   char szUserName[64];
2962   DWORD dwUserNameSize = sizeof(szUserName);
2963   char szDBusDaemonMutex[128];
2964   char szDBusDaemonAddressInfo[128];
2965   char szAddress[128];
2966   DWORD ret;
2967
2968   _dbus_assert(host);
2969   _dbus_assert(port);
2970
2971   _snprintf(szAddress, sizeof(szAddress) - 1, "tcp:host=%s,port=%d", host, port);
2972   ret = GetUserName(szUserName, &dwUserNameSize);
2973   _dbus_assert(ret != 0);
2974   _snprintf(szDBusDaemonMutex, sizeof(szDBusDaemonMutex) - 1, "%s:%s",
2975             cDBusDaemonMutex, szUserName);
2976   _snprintf(szDBusDaemonAddressInfo, sizeof(szDBusDaemonAddressInfo) - 1, "%s:%s",
2977             cDBusDaemonAddressInfo, szUserName);
2978
2979   // before _dbus_global_lock to keep correct lock/release order
2980   hDBusDaemonMutex = CreateMutex( NULL, FALSE, szDBusDaemonMutex );
2981   ret = WaitForSingleObject( hDBusDaemonMutex, 1000 );
2982   if ( ret != WAIT_OBJECT_0 ) {
2983     _dbus_warn("Could not lock mutex %s (return code %d). daemon already running?\n", szDBusDaemonMutex, ret );
2984     _dbus_assert( !"Could not lock mutex, daemon already running?" );
2985   }
2986
2987   // sync _dbus_daemon_init, _dbus_daemon_uninit and _dbus_daemon_already_runs
2988   lock = _dbus_global_lock( cUniqueDBusInitMutex );
2989
2990   // create shm
2991   hDBusSharedMem = CreateFileMapping( INVALID_HANDLE_VALUE, NULL, PAGE_READWRITE,
2992                                       0, strlen( szAddress ) + 1, szDBusDaemonAddressInfo );
2993   _dbus_assert( hDBusSharedMem );
2994
2995   adr = MapViewOfFile( hDBusSharedMem, FILE_MAP_WRITE, 0, 0, 0 );
2996
2997   _dbus_assert( adr );
2998
2999   strcpy( adr, szAddress);
3000
3001   // cleanup
3002   UnmapViewOfFile( adr );
3003
3004   _dbus_global_unlock( lock );
3005 }
3006
3007 void
3008 _dbus_daemon_release()
3009 {
3010   HANDLE lock;
3011
3012   // sync _dbus_daemon_init, _dbus_daemon_uninit and _dbus_daemon_already_runs
3013   lock = _dbus_global_lock( cUniqueDBusInitMutex );
3014
3015   CloseHandle( hDBusSharedMem );
3016
3017   hDBusSharedMem = NULL;
3018
3019   ReleaseMutex( hDBusDaemonMutex );
3020
3021   CloseHandle( hDBusDaemonMutex );
3022
3023   hDBusDaemonMutex = NULL;
3024
3025   _dbus_global_unlock( lock );
3026 }
3027
3028 static dbus_bool_t
3029 _dbus_get_autolaunch_shm(DBusString *adress)
3030 {
3031   HANDLE sharedMem;
3032   char *adr;
3033   char szUserName[64];
3034   DWORD dwUserNameSize = sizeof(szUserName);
3035   char szDBusDaemonAddressInfo[128];
3036   int i;
3037
3038   if( !GetUserName(szUserName, &dwUserNameSize) )
3039       return FALSE;
3040   _snprintf(szDBusDaemonAddressInfo, sizeof(szDBusDaemonAddressInfo) - 1, "%s:%s",
3041             cDBusDaemonAddressInfo, szUserName);
3042
3043   // read shm
3044   for(i=0;i<20;++i) {
3045       // we know that dbus-daemon is available, so we wait until shm is available
3046       sharedMem = OpenFileMapping( FILE_MAP_READ, FALSE, szDBusDaemonAddressInfo );
3047       if( sharedMem == 0 )
3048           Sleep( 100 );
3049       if ( sharedMem != 0)
3050           break;
3051   }
3052
3053   if( sharedMem == 0 )
3054       return FALSE;
3055
3056   adr = MapViewOfFile( sharedMem, FILE_MAP_READ, 0, 0, 0 );
3057
3058   if( adr == 0 )
3059       return FALSE;
3060
3061   _dbus_string_init( adress );
3062
3063   _dbus_string_append( adress, adr ); 
3064
3065   // cleanup
3066   UnmapViewOfFile( adr );
3067
3068   CloseHandle( sharedMem );
3069
3070   return TRUE;
3071 }
3072
3073 static dbus_bool_t
3074 _dbus_daemon_already_runs (DBusString *adress)
3075 {
3076   HANDLE lock;
3077   HANDLE daemon;
3078   dbus_bool_t bRet = TRUE;
3079   char szUserName[64];
3080   DWORD dwUserNameSize = sizeof(szUserName);
3081   char szDBusDaemonMutex[128];
3082
3083   // sync _dbus_daemon_init, _dbus_daemon_uninit and _dbus_daemon_already_runs
3084   lock = _dbus_global_lock( cUniqueDBusInitMutex );
3085
3086   if( !GetUserName(szUserName, &dwUserNameSize) )
3087       return FALSE;
3088   _snprintf(szDBusDaemonMutex, sizeof(szDBusDaemonMutex) - 1, "%s:%s",
3089             cDBusDaemonMutex, szUserName);
3090
3091   // do checks
3092   daemon = CreateMutex( NULL, FALSE, szDBusDaemonMutex );
3093   if(WaitForSingleObject( daemon, 10 ) != WAIT_TIMEOUT)
3094     {
3095       ReleaseMutex (daemon);
3096       CloseHandle (daemon);
3097
3098       _dbus_global_unlock( lock );
3099       return FALSE;
3100     }
3101
3102   // read shm
3103   bRet = _dbus_get_autolaunch_shm( adress );
3104
3105   // cleanup
3106   CloseHandle ( daemon );
3107
3108   _dbus_global_unlock( lock );
3109
3110   return bRet;
3111 }
3112
3113 dbus_bool_t
3114 _dbus_get_autolaunch_address (DBusString *address, 
3115                               DBusError *error)
3116 {
3117   HANDLE mutex;
3118   STARTUPINFOA si;
3119   PROCESS_INFORMATION pi;
3120   dbus_bool_t retval = FALSE;
3121   LPSTR lpFile;
3122   char dbus_exe_path[MAX_PATH];
3123   char dbus_args[MAX_PATH * 2];
3124 #ifdef _DEBUG
3125   const char * daemon_name = "dbus-daemond.exe";
3126 #else
3127   const char * daemon_name = "dbus-daemon.exe";
3128 #endif
3129
3130   mutex = _dbus_global_lock ( cDBusAutolaunchMutex );
3131
3132   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3133
3134   if (_dbus_daemon_already_runs(address))
3135     {
3136         _dbus_verbose("found already running dbus daemon\n");
3137         retval = TRUE;
3138         goto out;
3139     }
3140
3141   if (!SearchPathA(NULL, daemon_name, NULL, sizeof(dbus_exe_path), dbus_exe_path, &lpFile))
3142     {
3143       printf ("please add the path to %s to your PATH environment variable\n", daemon_name);
3144       printf ("or start the daemon manually\n\n");
3145       printf ("");
3146       goto out;
3147     }
3148
3149   // Create process
3150   ZeroMemory( &si, sizeof(si) );
3151   si.cb = sizeof(si);
3152   ZeroMemory( &pi, sizeof(pi) );
3153
3154   _snprintf(dbus_args, sizeof(dbus_args) - 1, "\"%s\" %s", dbus_exe_path,  " --session");
3155
3156 //  argv[i] = "--config-file=bus\\session.conf";
3157 //  printf("create process \"%s\" %s\n", dbus_exe_path, dbus_args);
3158   if(CreateProcessA(dbus_exe_path, dbus_args, NULL, NULL, FALSE, CREATE_NO_WINDOW, NULL, NULL, &si, &pi))
3159     {
3160
3161       retval = _dbus_get_autolaunch_shm( address );
3162     }
3163   
3164   if (retval == FALSE)
3165     dbus_set_error_const (error, DBUS_ERROR_FAILED, "Failed to launch dbus-daemon");
3166
3167 out:
3168   if (retval)
3169     _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3170   else
3171     _DBUS_ASSERT_ERROR_IS_SET (error);
3172   
3173   _dbus_global_unlock (mutex);
3174
3175   return retval;
3176  }
3177
3178
3179 /** Makes the file readable by every user in the system.
3180  *
3181  * @param filename the filename
3182  * @param error error location
3183  * @returns #TRUE if the file's permissions could be changed.
3184  */
3185 dbus_bool_t
3186 _dbus_make_file_world_readable(const DBusString *filename,
3187                                DBusError *error)
3188 {
3189   // TODO
3190   return TRUE;
3191 }
3192
3193
3194 #define DBUS_STANDARD_SESSION_SERVICEDIR "/dbus-1/services"
3195 #define DBUS_STANDARD_SYSTEM_SERVICEDIR "/dbus-1/system-services"
3196
3197 /**
3198  * Returns the standard directories for a session bus to look for service 
3199  * activation files 
3200  *
3201  * On Windows this should be data directories:
3202  *
3203  * %CommonProgramFiles%/dbus
3204  *
3205  * and
3206  *
3207  * DBUS_DATADIR
3208  *
3209  * @param dirs the directory list we are returning
3210  * @returns #FALSE on OOM 
3211  */
3212
3213 dbus_bool_t 
3214 _dbus_get_standard_session_servicedirs (DBusList **dirs)
3215 {
3216   const char *common_progs;
3217   DBusString servicedir_path;
3218
3219   if (!_dbus_string_init (&servicedir_path))
3220     return FALSE;
3221
3222   if (!_dbus_string_append (&servicedir_path, DBUS_DATADIR _DBUS_PATH_SEPARATOR))
3223         goto oom;
3224
3225   common_progs = _dbus_getenv ("CommonProgramFiles");
3226
3227   if (common_progs != NULL)
3228     {
3229       if (!_dbus_string_append (&servicedir_path, common_progs))
3230         goto oom;
3231
3232       if (!_dbus_string_append (&servicedir_path, _DBUS_PATH_SEPARATOR))
3233         goto oom;
3234     }
3235
3236   if (!_dbus_split_paths_and_append (&servicedir_path, 
3237                                DBUS_STANDARD_SESSION_SERVICEDIR, 
3238                                dirs))
3239     goto oom;
3240
3241   _dbus_string_free (&servicedir_path);  
3242   return TRUE;
3243
3244  oom:
3245   _dbus_string_free (&servicedir_path);
3246   return FALSE;
3247 }
3248
3249 /**
3250  * Returns the standard directories for a system bus to look for service
3251  * activation files
3252  *
3253  * On UNIX this should be the standard xdg freedesktop.org data directories:
3254  *
3255  * XDG_DATA_DIRS=${XDG_DATA_DIRS-/usr/local/share:/usr/share}
3256  *
3257  * and
3258  *
3259  * DBUS_DATADIR
3260  *
3261  * On Windows there is no system bus and this function can return nothing.
3262  *
3263  * @param dirs the directory list we are returning
3264  * @returns #FALSE on OOM
3265  */
3266
3267 dbus_bool_t
3268 _dbus_get_standard_system_servicedirs (DBusList **dirs)
3269 {
3270   *dirs = NULL;
3271   return TRUE;
3272 }
3273
3274 _DBUS_DEFINE_GLOBAL_LOCK (atomic);
3275
3276 /**
3277  * Atomically increments an integer
3278  *
3279  * @param atomic pointer to the integer to increment
3280  * @returns the value before incrementing
3281  *
3282  */
3283 dbus_int32_t
3284 _dbus_atomic_inc (DBusAtomic *atomic)
3285 {
3286   // +/- 1 is needed here!
3287   // no volatile argument with mingw
3288   return InterlockedIncrement (&atomic->value) - 1;
3289 }
3290
3291 /**
3292  * Atomically decrement an integer
3293  *
3294  * @param atomic pointer to the integer to decrement
3295  * @returns the value before decrementing
3296  *
3297  */
3298 dbus_int32_t
3299 _dbus_atomic_dec (DBusAtomic *atomic)
3300 {
3301   // +/- 1 is needed here!
3302   // no volatile argument with mingw
3303   return InterlockedDecrement (&atomic->value) + 1;
3304 }
3305
3306 #endif /* asserts or tests enabled */
3307
3308 /**
3309  * Called when the bus daemon is signaled to reload its configuration; any
3310  * caches should be nuked. Of course any caches that need explicit reload
3311  * are probably broken, but c'est la vie.
3312  *
3313  * 
3314  */
3315 void
3316 _dbus_flush_caches (void)
3317 {
3318
3319 }
3320
3321 dbus_bool_t _dbus_windows_user_is_process_owner (const char *windows_sid)
3322 {
3323     return TRUE;
3324 }
3325
3326 /**
3327  * See if errno is EAGAIN or EWOULDBLOCK (this has to be done differently
3328  * for Winsock so is abstracted)
3329  *
3330  * @returns #TRUE if errno == EAGAIN or errno == EWOULDBLOCK
3331  */
3332 dbus_bool_t
3333 _dbus_get_is_errno_eagain_or_ewouldblock (void)
3334 {
3335   return errno == EAGAIN || errno == EWOULDBLOCK;
3336 }
3337
3338 /**
3339  * return the absolute path of the dbus installation 
3340  *
3341  * @param s buffer for installation path
3342  * @param len length of buffer
3343  * @returns #FALSE on failure
3344  */
3345 dbus_bool_t 
3346 _dbus_get_install_root(char *s, int len)
3347 {
3348   char *p = NULL;
3349   int ret = GetModuleFileName(NULL,s,len);
3350   if ( ret == 0 
3351     || ret == len && GetLastError() == ERROR_INSUFFICIENT_BUFFER)
3352     {
3353       *s = '\0';
3354       return FALSE;
3355     }
3356   else if ((p = strstr(s,"\\bin\\")))
3357     {
3358       *(p+1)= '\0';
3359       return TRUE;
3360     }
3361   else
3362     {
3363       *s = '\0';
3364       return FALSE;
3365     }
3366 }
3367
3368 /** 
3369   find config file either from installation or build root according to 
3370   the following path layout 
3371     install-root/
3372       bin/dbus-daemon[d].exe
3373       etc/<config-file>.conf 
3374
3375     build-root/
3376       bin/dbus-daemon[d].exe
3377       bus/<config-file>.conf 
3378 */
3379 dbus_bool_t 
3380 _dbus_get_config_file_name(DBusString *config_file, char *s)
3381 {
3382   char path[MAX_PATH*2];
3383   int path_size = sizeof(path);
3384   int len = 4 + strlen(s);
3385
3386   if (!_dbus_get_install_root(path,path_size))
3387     return FALSE;
3388
3389   if(len > sizeof(path)-2)
3390     return FALSE;
3391   strcat(path,"etc\\");
3392   strcat(path,s);
3393   if (_dbus_file_exists(path)) 
3394     {
3395       // find path from executable 
3396       if (!_dbus_string_append (config_file, path))
3397         return FALSE;
3398     }
3399   else 
3400     {
3401       if (!_dbus_get_install_root(path,path_size))
3402         return FALSE;
3403       if(len + strlen(path) > sizeof(path)-2)
3404         return FALSE;
3405       strcat(path,"bus\\");
3406       strcat(path,s);
3407   
3408       if (_dbus_file_exists(path)) 
3409         {
3410           if (!_dbus_string_append (config_file, path))
3411             return FALSE;
3412         }
3413     }
3414   return TRUE;
3415 }    
3416
3417 /**
3418  * Append the absolute path of the system.conf file
3419  * (there is no system bus on Windows so this can just
3420  * return FALSE and print a warning or something)
3421  * 
3422  * @param str the string to append to
3423  * @returns #FALSE if no memory
3424  */
3425 dbus_bool_t
3426 _dbus_append_system_config_file (DBusString *str)
3427 {
3428   return _dbus_get_config_file_name(str, "system.conf");
3429 }
3430
3431 /**
3432  * Append the absolute path of the session.conf file.
3433  * 
3434  * @param str the string to append to
3435  * @returns #FALSE if no memory
3436  */
3437 dbus_bool_t
3438 _dbus_append_session_config_file (DBusString *str)
3439 {
3440   return _dbus_get_config_file_name(str, "session.conf");
3441 }
3442
3443 /* See comment in dbus-sysdeps-unix.c */
3444 dbus_bool_t
3445 _dbus_lookup_session_address (dbus_bool_t *supported,
3446                               DBusString  *address,
3447                               DBusError   *error)
3448 {
3449   /* Probably fill this in with something based on COM? */
3450   *supported = FALSE;
3451   return TRUE;
3452 }
3453
3454 /**
3455  * Appends the directory in which a keyring for the given credentials
3456  * should be stored.  The credentials should have either a Windows or
3457  * UNIX user in them.  The directory should be an absolute path.
3458  *
3459  * On UNIX the directory is ~/.dbus-keyrings while on Windows it should probably
3460  * be something else, since the dotfile convention is not normal on Windows.
3461  * 
3462  * @param directory string to append directory to
3463  * @param credentials credentials the directory should be for
3464  *  
3465  * @returns #FALSE on no memory
3466  */
3467 dbus_bool_t
3468 _dbus_append_keyring_directory_for_credentials (DBusString      *directory,
3469                                                 DBusCredentials *credentials)
3470 {
3471   DBusString homedir;
3472   DBusString dotdir;
3473   dbus_uid_t uid;
3474   const char *homepath;
3475
3476   _dbus_assert (credentials != NULL);
3477   _dbus_assert (!_dbus_credentials_are_anonymous (credentials));
3478   
3479   if (!_dbus_string_init (&homedir))
3480     return FALSE;
3481
3482   homepath = _dbus_getenv("HOMEPATH");
3483   if (homepath != NULL && *homepath != '\0')
3484     {
3485       _dbus_string_append(&homedir,homepath);
3486     }
3487   
3488 #ifdef DBUS_BUILD_TESTS
3489   {
3490     const char *override;
3491     
3492     override = _dbus_getenv ("DBUS_TEST_HOMEDIR");
3493     if (override != NULL && *override != '\0')
3494       {
3495         _dbus_string_set_length (&homedir, 0);
3496         if (!_dbus_string_append (&homedir, override))
3497           goto failed;
3498
3499         _dbus_verbose ("Using fake homedir for testing: %s\n",
3500                        _dbus_string_get_const_data (&homedir));
3501       }
3502     else
3503       {
3504         static dbus_bool_t already_warned = FALSE;
3505         if (!already_warned)
3506           {
3507             _dbus_warn ("Using your real home directory for testing, set DBUS_TEST_HOMEDIR to avoid\n");
3508             already_warned = TRUE;
3509           }
3510       }
3511   }
3512 #endif
3513
3514   _dbus_string_init_const (&dotdir, ".dbus-keyrings");
3515   if (!_dbus_concat_dir_and_file (&homedir,
3516                                   &dotdir))
3517     goto failed;
3518   
3519   if (!_dbus_string_copy (&homedir, 0,
3520                           directory, _dbus_string_get_length (directory))) {
3521     goto failed;
3522   }
3523
3524   _dbus_string_free (&homedir);
3525   return TRUE;
3526   
3527  failed: 
3528   _dbus_string_free (&homedir);
3529   return FALSE;
3530 }
3531
3532 /** @} end of sysdeps-win */
3533 /* tests in dbus-sysdeps-util.c */
3534