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