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