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