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