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