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)
4 * Copyright (C) 2002, 2003 Red Hat, Inc.
5 * Copyright (C) 2003 CodeFactory AB
6 * Copyright (C) 2005 Novell, Inc.
7 * Copyright (C) 2006 Ralf Habacker <ralf.habacker@freenet.de>
8 * Copyright (C) 2006 Peter Kümmel <syntheticpp@gmx.net>
9 * Copyright (C) 2006 Christian Ehrlicher <ch.ehrlicher@gmx.de>
11 * Licensed under the Academic Free License version 2.1
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.
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.
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
29 #define STRSAFE_NO_DEPRECATE
33 #define _WIN32_WINNT 0x0501
37 #include "dbus-internals.h"
38 #include "dbus-sysdeps.h"
39 #include "dbus-threads.h"
40 #include "dbus-protocol.h"
41 #include "dbus-string.h"
42 #include "dbus-sysdeps-win.h"
43 #include "dbus-protocol.h"
44 #include "dbus-hash.h"
45 #include "dbus-sockets-win.h"
46 #include "dbus-list.h"
47 #include "dbus-nonce.h"
48 #include "dbus-credentials.h"
54 /* Declarations missing in mingw's headers */
55 extern BOOL WINAPI ConvertStringSidToSidA (LPCSTR StringSid, PSID *Sid);
56 extern BOOL WINAPI ConvertSidToStringSidA (PSID Sid, LPSTR *StringSid);
68 #include <sys/types.h>
71 // needed for w2k compatibility (getaddrinfo/freeaddrinfo/getnameinfo)
78 #endif // HAVE_WSPIAPI_H
84 typedef int socklen_t;
87 _dbus_win_error_string (int error_number)
91 FormatMessage (FORMAT_MESSAGE_ALLOCATE_BUFFER |
92 FORMAT_MESSAGE_IGNORE_INSERTS |
93 FORMAT_MESSAGE_FROM_SYSTEM,
94 NULL, error_number, 0,
95 (LPSTR) &msg, 0, NULL);
97 if (msg[strlen (msg) - 1] == '\n')
98 msg[strlen (msg) - 1] = '\0';
99 if (msg[strlen (msg) - 1] == '\r')
100 msg[strlen (msg) - 1] = '\0';
106 _dbus_win_free_error_string (char *string)
117 * Thin wrapper around the read() system call that appends
118 * the data it reads to the DBusString buffer. It appends
119 * up to the given count, and returns the same value
120 * and same errno as read(). The only exception is that
121 * _dbus_read_socket() handles EINTR for you.
122 * _dbus_read_socket() can return ENOMEM, even though
123 * regular UNIX read doesn't.
125 * @param fd the file descriptor to read from
126 * @param buffer the buffer to append data to
127 * @param count the amount of data to read
128 * @returns the number of bytes read or -1
132 _dbus_read_socket (int fd,
140 _dbus_assert (count >= 0);
142 start = _dbus_string_get_length (buffer);
144 if (!_dbus_string_lengthen (buffer, count))
150 data = _dbus_string_get_data_len (buffer, start, count);
154 _dbus_verbose ("recv: count=%d fd=%d\n", count, fd);
155 bytes_read = recv (fd, data, count, 0);
157 if (bytes_read == SOCKET_ERROR)
159 DBUS_SOCKET_SET_ERRNO();
160 _dbus_verbose ("recv: failed: %s (%d)\n", _dbus_strerror (errno), errno);
164 _dbus_verbose ("recv: = %d\n", bytes_read);
172 /* put length back (note that this doesn't actually realloc anything) */
173 _dbus_string_set_length (buffer, start);
179 /* put length back (doesn't actually realloc) */
180 _dbus_string_set_length (buffer, start + bytes_read);
184 _dbus_verbose_bytes_of_string (buffer, start, bytes_read);
192 * Thin wrapper around the write() system call that writes a part of a
193 * DBusString and handles EINTR for you.
195 * @param fd the file descriptor to write
196 * @param buffer the buffer to write data from
197 * @param start the first byte in the buffer to write
198 * @param len the number of bytes to try to write
199 * @returns the number of bytes written or -1 on error
202 _dbus_write_socket (int fd,
203 const DBusString *buffer,
210 data = _dbus_string_get_const_data_len (buffer, start, len);
214 _dbus_verbose ("send: len=%d fd=%d\n", len, fd);
215 bytes_written = send (fd, data, len, 0);
217 if (bytes_written == SOCKET_ERROR)
219 DBUS_SOCKET_SET_ERRNO();
220 _dbus_verbose ("send: failed: %s\n", _dbus_strerror (errno));
224 _dbus_verbose ("send: = %d\n", bytes_written);
226 if (bytes_written < 0 && errno == EINTR)
230 if (bytes_written > 0)
231 _dbus_verbose_bytes_of_string (buffer, start, bytes_written);
234 return bytes_written;
239 * Closes a file descriptor.
241 * @param fd the file descriptor
242 * @param error error object
243 * @returns #FALSE if error set
246 _dbus_close_socket (int fd,
249 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
252 if (closesocket (fd) == SOCKET_ERROR)
254 DBUS_SOCKET_SET_ERRNO ();
259 dbus_set_error (error, _dbus_error_from_errno (errno),
260 "Could not close socket: socket=%d, , %s",
261 fd, _dbus_strerror (errno));
264 _dbus_verbose ("_dbus_close_socket: socket=%d, \n", fd);
270 * Sets the file descriptor to be close
271 * on exec. Should be called for all file
272 * descriptors in D-Bus code.
274 * @param fd the file descriptor
277 _dbus_fd_set_close_on_exec (int handle)
279 if ( !SetHandleInformation( (HANDLE) handle,
280 HANDLE_FLAG_INHERIT | HANDLE_FLAG_PROTECT_FROM_CLOSE,
281 0 /*disable both flags*/ ) )
283 _dbus_win_warn_win_error ("Disabling socket handle inheritance failed:", GetLastError());
288 * Sets a file descriptor to be nonblocking.
290 * @param fd the file descriptor.
291 * @param error address of error location.
292 * @returns #TRUE on success.
295 _dbus_set_fd_nonblocking (int handle,
300 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
302 if (ioctlsocket (handle, FIONBIO, &one) == SOCKET_ERROR)
304 dbus_set_error (error, _dbus_error_from_errno (WSAGetLastError ()),
305 "Failed to set socket %d:%d to nonblocking: %s", handle,
306 _dbus_strerror (WSAGetLastError ()));
315 * Like _dbus_write() but will use writev() if possible
316 * to write both buffers in sequence. The return value
317 * is the number of bytes written in the first buffer,
318 * plus the number written in the second. If the first
319 * buffer is written successfully and an error occurs
320 * writing the second, the number of bytes in the first
321 * is returned (i.e. the error is ignored), on systems that
322 * don't have writev. Handles EINTR for you.
323 * The second buffer may be #NULL.
325 * @param fd the file descriptor
326 * @param buffer1 first buffer
327 * @param start1 first byte to write in first buffer
328 * @param len1 number of bytes to write from first buffer
329 * @param buffer2 second buffer, or #NULL
330 * @param start2 first byte to write in second buffer
331 * @param len2 number of bytes to write in second buffer
332 * @returns total bytes written from both buffers, or -1 on error
335 _dbus_write_socket_two (int fd,
336 const DBusString *buffer1,
339 const DBusString *buffer2,
349 _dbus_assert (buffer1 != NULL);
350 _dbus_assert (start1 >= 0);
351 _dbus_assert (start2 >= 0);
352 _dbus_assert (len1 >= 0);
353 _dbus_assert (len2 >= 0);
356 data1 = _dbus_string_get_const_data_len (buffer1, start1, len1);
359 data2 = _dbus_string_get_const_data_len (buffer2, start2, len2);
367 vectors[0].buf = (char*) data1;
368 vectors[0].len = len1;
369 vectors[1].buf = (char*) data2;
370 vectors[1].len = len2;
374 _dbus_verbose ("WSASend: len1+2=%d+%d fd=%d\n", len1, len2, fd);
385 DBUS_SOCKET_SET_ERRNO ();
386 _dbus_verbose ("WSASend: failed: %s\n", _dbus_strerror (errno));
390 _dbus_verbose ("WSASend: = %ld\n", bytes_written);
392 if (bytes_written < 0 && errno == EINTR)
395 return bytes_written;
399 _dbus_socket_is_invalid (int fd)
401 return fd == INVALID_SOCKET ? TRUE : FALSE;
407 * Opens the client side of a Windows named pipe. The connection D-BUS
408 * file descriptor index is returned. It is set up as nonblocking.
410 * @param path the path to named pipe socket
411 * @param error return location for error code
412 * @returns connection D-BUS file descriptor or -1 on error
415 _dbus_connect_named_pipe (const char *path,
418 _dbus_assert_not_reached ("not implemented");
426 _dbus_win_startup_winsock (void)
428 /* Straight from MSDN, deuglified */
430 static dbus_bool_t beenhere = FALSE;
432 WORD wVersionRequested;
439 wVersionRequested = MAKEWORD (2, 0);
441 err = WSAStartup (wVersionRequested, &wsaData);
444 _dbus_assert_not_reached ("Could not initialize WinSock");
448 /* Confirm that the WinSock DLL supports 2.0. Note that if the DLL
449 * supports versions greater than 2.0 in addition to 2.0, it will
450 * still return 2.0 in wVersion since that is the version we
453 if (LOBYTE (wsaData.wVersion) != 2 ||
454 HIBYTE (wsaData.wVersion) != 0)
456 _dbus_assert_not_reached ("No usable WinSock found");
471 /************************************************************************
475 ************************************************************************/
478 * Measure the message length without terminating nul
480 int _dbus_printf_string_upper_bound (const char *format,
483 /* MSVCRT's vsnprintf semantics are a bit different */
488 bufsize = sizeof (buf);
489 len = _vsnprintf (buf, bufsize - 1, format, args);
491 while (len == -1) /* try again */
497 p = malloc (bufsize);
498 len = _vsnprintf (p, bufsize - 1, format, args);
507 * Returns the UTF-16 form of a UTF-8 string. The result should be
508 * freed with dbus_free() when no longer needed.
510 * @param str the UTF-8 string
511 * @param error return location for error code
514 _dbus_win_utf8_to_utf16 (const char *str,
521 _dbus_string_init_const (&s, str);
523 if (!_dbus_string_validate_utf8 (&s, 0, _dbus_string_get_length (&s)))
525 dbus_set_error_const (error, DBUS_ERROR_FAILED, "Invalid UTF-8");
529 n = MultiByteToWideChar (CP_UTF8, 0, str, -1, NULL, 0);
533 _dbus_win_set_error_from_win_error (error, GetLastError ());
537 retval = dbus_new (wchar_t, n);
541 _DBUS_SET_OOM (error);
545 if (MultiByteToWideChar (CP_UTF8, 0, str, -1, retval, n) != n)
548 dbus_set_error_const (error, DBUS_ERROR_FAILED, "MultiByteToWideChar inconsistency");
556 * Returns the UTF-8 form of a UTF-16 string. The result should be
557 * freed with dbus_free() when no longer needed.
559 * @param str the UTF-16 string
560 * @param error return location for error code
563 _dbus_win_utf16_to_utf8 (const wchar_t *str,
569 n = WideCharToMultiByte (CP_UTF8, 0, str, -1, NULL, 0, NULL, NULL);
573 _dbus_win_set_error_from_win_error (error, GetLastError ());
577 retval = dbus_malloc (n);
581 _DBUS_SET_OOM (error);
585 if (WideCharToMultiByte (CP_UTF8, 0, str, -1, retval, n, NULL, NULL) != n)
588 dbus_set_error_const (error, DBUS_ERROR_FAILED, "WideCharToMultiByte inconsistency");
600 /************************************************************************
603 ************************************************************************/
606 _dbus_win_account_to_sid (const wchar_t *waccount,
610 dbus_bool_t retval = FALSE;
611 DWORD sid_length, wdomain_length;
619 if (!LookupAccountNameW (NULL, waccount, NULL, &sid_length,
620 NULL, &wdomain_length, &use) &&
621 GetLastError () != ERROR_INSUFFICIENT_BUFFER)
623 _dbus_win_set_error_from_win_error (error, GetLastError ());
627 *ppsid = dbus_malloc (sid_length);
630 _DBUS_SET_OOM (error);
634 wdomain = dbus_new (wchar_t, wdomain_length);
637 _DBUS_SET_OOM (error);
641 if (!LookupAccountNameW (NULL, waccount, (PSID) *ppsid, &sid_length,
642 wdomain, &wdomain_length, &use))
644 _dbus_win_set_error_from_win_error (error, GetLastError ());
648 if (!IsValidSid ((PSID) *ppsid))
650 dbus_set_error_const (error, DBUS_ERROR_FAILED, "Invalid SID");
668 /** @} end of sysdeps-win */
672 * The only reason this is separate from _dbus_getpid() is to allow it
673 * on Windows for logging but not for other purposes.
675 * @returns process ID to put in log messages
678 _dbus_pid_for_log (void)
680 return _dbus_getpid ();
684 * @param points to sid buffer, need to be freed with LocalFree()
685 * @returns process sid
688 _dbus_getsid(char **sid)
690 HANDLE process_token = NULL;
691 TOKEN_USER *token_user = NULL;
696 if (!OpenProcessToken (GetCurrentProcess (), TOKEN_QUERY, &process_token))
698 _dbus_win_warn_win_error ("OpenProcessToken failed", GetLastError ());
701 if ((!GetTokenInformation (process_token, TokenUser, NULL, 0, &n)
702 && GetLastError () != ERROR_INSUFFICIENT_BUFFER)
703 || (token_user = alloca (n)) == NULL
704 || !GetTokenInformation (process_token, TokenUser, token_user, n, &n))
706 _dbus_win_warn_win_error ("GetTokenInformation failed", GetLastError ());
709 psid = token_user->User.Sid;
710 if (!IsValidSid (psid))
712 _dbus_verbose("%s invalid sid\n",__FUNCTION__);
715 if (!ConvertSidToStringSidA (psid, sid))
717 _dbus_verbose("%s invalid sid\n",__FUNCTION__);
724 if (process_token != NULL)
725 CloseHandle (process_token);
727 _dbus_verbose("_dbus_getsid() returns %d\n",retval);
731 /************************************************************************
735 ************************************************************************/
738 * Creates a full-duplex pipe (as in socketpair()).
739 * Sets both ends of the pipe nonblocking.
741 * @todo libdbus only uses this for the debug-pipe server, so in
742 * principle it could be in dbus-sysdeps-util.c, except that
743 * dbus-sysdeps-util.c isn't in libdbus when tests are enabled and the
744 * debug-pipe server is used.
746 * @param fd1 return location for one end
747 * @param fd2 return location for the other end
748 * @param blocking #TRUE if pipe should be blocking
749 * @param error error return
750 * @returns #FALSE on failure (if error is set)
753 _dbus_full_duplex_pipe (int *fd1,
755 dbus_bool_t blocking,
758 SOCKET temp, socket1 = -1, socket2 = -1;
759 struct sockaddr_in saddr;
762 fd_set read_set, write_set;
765 _dbus_win_startup_winsock ();
767 temp = socket (AF_INET, SOCK_STREAM, 0);
768 if (temp == INVALID_SOCKET)
770 DBUS_SOCKET_SET_ERRNO ();
775 if (ioctlsocket (temp, FIONBIO, &arg) == SOCKET_ERROR)
777 DBUS_SOCKET_SET_ERRNO ();
782 saddr.sin_family = AF_INET;
784 saddr.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
786 if (bind (temp, (struct sockaddr *)&saddr, sizeof (saddr)))
788 DBUS_SOCKET_SET_ERRNO ();
792 if (listen (temp, 1) == SOCKET_ERROR)
794 DBUS_SOCKET_SET_ERRNO ();
798 len = sizeof (saddr);
799 if (getsockname (temp, (struct sockaddr *)&saddr, &len))
801 DBUS_SOCKET_SET_ERRNO ();
805 socket1 = socket (AF_INET, SOCK_STREAM, 0);
806 if (socket1 == INVALID_SOCKET)
808 DBUS_SOCKET_SET_ERRNO ();
813 if (ioctlsocket (socket1, FIONBIO, &arg) == SOCKET_ERROR)
815 DBUS_SOCKET_SET_ERRNO ();
819 if (connect (socket1, (struct sockaddr *)&saddr, len) != SOCKET_ERROR ||
820 WSAGetLastError () != WSAEWOULDBLOCK)
822 DBUS_SOCKET_SET_ERRNO ();
827 FD_SET (temp, &read_set);
832 if (select (0, &read_set, NULL, NULL, NULL) == SOCKET_ERROR)
834 DBUS_SOCKET_SET_ERRNO ();
838 _dbus_assert (FD_ISSET (temp, &read_set));
840 socket2 = accept (temp, (struct sockaddr *) &saddr, &len);
841 if (socket2 == INVALID_SOCKET)
843 DBUS_SOCKET_SET_ERRNO ();
847 FD_ZERO (&write_set);
848 FD_SET (socket1, &write_set);
853 if (select (0, NULL, &write_set, NULL, NULL) == SOCKET_ERROR)
855 DBUS_SOCKET_SET_ERRNO ();
859 _dbus_assert (FD_ISSET (socket1, &write_set));
864 if (ioctlsocket (socket1, FIONBIO, &arg) == SOCKET_ERROR)
866 DBUS_SOCKET_SET_ERRNO ();
871 if (ioctlsocket (socket2, FIONBIO, &arg) == SOCKET_ERROR)
873 DBUS_SOCKET_SET_ERRNO ();
880 if (ioctlsocket (socket2, FIONBIO, &arg) == SOCKET_ERROR)
882 DBUS_SOCKET_SET_ERRNO ();
890 _dbus_verbose ("full-duplex pipe %d:%d <-> %d:%d\n",
891 *fd1, socket1, *fd2, socket2);
898 closesocket (socket2);
900 closesocket (socket1);
904 dbus_set_error (error, _dbus_error_from_errno (errno),
905 "Could not setup socket pair: %s",
906 _dbus_strerror (errno));
912 * Wrapper for poll().
914 * @param fds the file descriptors to poll
915 * @param n_fds number of descriptors in the array
916 * @param timeout_milliseconds timeout or -1 for infinite
917 * @returns numbers of fds with revents, or <0 on error
920 _dbus_poll (DBusPollFD *fds,
922 int timeout_milliseconds)
924 #define USE_CHRIS_IMPL 0
928 #define DBUS_POLL_CHAR_BUFFER_SIZE 2000
929 char msg[DBUS_POLL_CHAR_BUFFER_SIZE];
937 #define DBUS_STACK_WSAEVENTS 256
938 WSAEVENT eventsOnStack[DBUS_STACK_WSAEVENTS];
939 WSAEVENT *pEvents = NULL;
940 if (n_fds > DBUS_STACK_WSAEVENTS)
941 pEvents = calloc(sizeof(WSAEVENT), n_fds);
943 pEvents = eventsOnStack;
946 #ifdef DBUS_ENABLE_VERBOSE_MODE
948 msgp += sprintf (msgp, "WSAEventSelect: to=%d\n\t", timeout_milliseconds);
949 for (i = 0; i < n_fds; i++)
951 static dbus_bool_t warned = FALSE;
952 DBusPollFD *fdp = &fds[i];
955 if (fdp->events & _DBUS_POLLIN)
956 msgp += sprintf (msgp, "R:%d ", fdp->fd);
958 if (fdp->events & _DBUS_POLLOUT)
959 msgp += sprintf (msgp, "W:%d ", fdp->fd);
961 msgp += sprintf (msgp, "E:%d\n\t", fdp->fd);
963 // FIXME: more robust code for long msg
964 // create on heap when msg[] becomes too small
965 if (msgp >= msg + DBUS_POLL_CHAR_BUFFER_SIZE)
967 _dbus_assert_not_reached ("buffer overflow in _dbus_poll");
971 msgp += sprintf (msgp, "\n");
972 _dbus_verbose ("%s",msg);
974 for (i = 0; i < n_fds; i++)
976 DBusPollFD *fdp = &fds[i];
978 long lNetworkEvents = FD_OOB;
980 ev = WSACreateEvent();
982 if (fdp->events & _DBUS_POLLIN)
983 lNetworkEvents |= FD_READ | FD_ACCEPT | FD_CLOSE;
985 if (fdp->events & _DBUS_POLLOUT)
986 lNetworkEvents |= FD_WRITE | FD_CONNECT;
988 WSAEventSelect(fdp->fd, ev, lNetworkEvents);
994 ready = WSAWaitForMultipleEvents (n_fds, pEvents, FALSE, timeout_milliseconds, FALSE);
996 if (DBUS_SOCKET_API_RETURNS_ERROR (ready))
998 DBUS_SOCKET_SET_ERRNO ();
999 if (errno != WSAEWOULDBLOCK)
1000 _dbus_verbose ("WSAWaitForMultipleEvents: failed: %s\n", strerror (errno));
1003 else if (ready == WSA_WAIT_TIMEOUT)
1005 _dbus_verbose ("WSAWaitForMultipleEvents: WSA_WAIT_TIMEOUT\n");
1008 else if (ready >= WSA_WAIT_EVENT_0 && ready < (int)(WSA_WAIT_EVENT_0 + n_fds))
1011 msgp += sprintf (msgp, "WSAWaitForMultipleEvents: =%d\n\t", ready);
1013 for (i = 0; i < n_fds; i++)
1015 DBusPollFD *fdp = &fds[i];
1016 WSANETWORKEVENTS ne;
1020 WSAEnumNetworkEvents(fdp->fd, pEvents[i], &ne);
1022 if (ne.lNetworkEvents & (FD_READ | FD_ACCEPT | FD_CLOSE))
1023 fdp->revents |= _DBUS_POLLIN;
1025 if (ne.lNetworkEvents & (FD_WRITE | FD_CONNECT))
1026 fdp->revents |= _DBUS_POLLOUT;
1028 if (ne.lNetworkEvents & (FD_OOB))
1029 fdp->revents |= _DBUS_POLLERR;
1031 if (ne.lNetworkEvents & (FD_READ | FD_ACCEPT | FD_CLOSE))
1032 msgp += sprintf (msgp, "R:%d ", fdp->fd);
1034 if (ne.lNetworkEvents & (FD_WRITE | FD_CONNECT))
1035 msgp += sprintf (msgp, "W:%d ", fdp->fd);
1037 if (ne.lNetworkEvents & (FD_OOB))
1038 msgp += sprintf (msgp, "E:%d ", fdp->fd);
1040 msgp += sprintf (msgp, "lNetworkEvents:%d ", ne.lNetworkEvents);
1042 if(ne.lNetworkEvents)
1045 WSAEventSelect(fdp->fd, pEvents[i], 0);
1048 msgp += sprintf (msgp, "\n");
1049 _dbus_verbose ("%s",msg);
1053 _dbus_verbose ("WSAWaitForMultipleEvents: failed for unknown reason!");
1057 for(i = 0; i < n_fds; i++)
1059 WSACloseEvent(pEvents[i]);
1062 if (n_fds > DBUS_STACK_WSAEVENTS)
1067 #else /* USE_CHRIS_IMPL */
1069 #define DBUS_POLL_CHAR_BUFFER_SIZE 2000
1070 char msg[DBUS_POLL_CHAR_BUFFER_SIZE];
1073 fd_set read_set, write_set, err_set;
1079 FD_ZERO (&read_set);
1080 FD_ZERO (&write_set);
1084 #ifdef DBUS_ENABLE_VERBOSE_MODE
1086 msgp += sprintf (msgp, "select: to=%d\n\t", timeout_milliseconds);
1087 for (i = 0; i < n_fds; i++)
1089 static dbus_bool_t warned = FALSE;
1090 DBusPollFD *fdp = &fds[i];
1093 if (fdp->events & _DBUS_POLLIN)
1094 msgp += sprintf (msgp, "R:%d ", fdp->fd);
1096 if (fdp->events & _DBUS_POLLOUT)
1097 msgp += sprintf (msgp, "W:%d ", fdp->fd);
1099 msgp += sprintf (msgp, "E:%d\n\t", fdp->fd);
1101 // FIXME: more robust code for long msg
1102 // create on heap when msg[] becomes too small
1103 if (msgp >= msg + DBUS_POLL_CHAR_BUFFER_SIZE)
1105 _dbus_assert_not_reached ("buffer overflow in _dbus_poll");
1109 msgp += sprintf (msgp, "\n");
1110 _dbus_verbose ("%s",msg);
1112 for (i = 0; i < n_fds; i++)
1114 DBusPollFD *fdp = &fds[i];
1116 if (fdp->events & _DBUS_POLLIN)
1117 FD_SET (fdp->fd, &read_set);
1119 if (fdp->events & _DBUS_POLLOUT)
1120 FD_SET (fdp->fd, &write_set);
1122 FD_SET (fdp->fd, &err_set);
1124 max_fd = MAX (max_fd, fdp->fd);
1128 tv.tv_sec = timeout_milliseconds / 1000;
1129 tv.tv_usec = (timeout_milliseconds % 1000) * 1000;
1131 ready = select (max_fd + 1, &read_set, &write_set, &err_set,
1132 timeout_milliseconds < 0 ? NULL : &tv);
1134 if (DBUS_SOCKET_API_RETURNS_ERROR (ready))
1136 DBUS_SOCKET_SET_ERRNO ();
1137 if (errno != WSAEWOULDBLOCK)
1138 _dbus_verbose ("select: failed: %s\n", _dbus_strerror (errno));
1140 else if (ready == 0)
1141 _dbus_verbose ("select: = 0\n");
1145 #ifdef DBUS_ENABLE_VERBOSE_MODE
1147 msgp += sprintf (msgp, "select: = %d:\n\t", ready);
1149 for (i = 0; i < n_fds; i++)
1151 DBusPollFD *fdp = &fds[i];
1153 if (FD_ISSET (fdp->fd, &read_set))
1154 msgp += sprintf (msgp, "R:%d ", fdp->fd);
1156 if (FD_ISSET (fdp->fd, &write_set))
1157 msgp += sprintf (msgp, "W:%d ", fdp->fd);
1159 if (FD_ISSET (fdp->fd, &err_set))
1160 msgp += sprintf (msgp, "E:%d\n\t", fdp->fd);
1162 msgp += sprintf (msgp, "\n");
1163 _dbus_verbose ("%s",msg);
1166 for (i = 0; i < n_fds; i++)
1168 DBusPollFD *fdp = &fds[i];
1172 if (FD_ISSET (fdp->fd, &read_set))
1173 fdp->revents |= _DBUS_POLLIN;
1175 if (FD_ISSET (fdp->fd, &write_set))
1176 fdp->revents |= _DBUS_POLLOUT;
1178 if (FD_ISSET (fdp->fd, &err_set))
1179 fdp->revents |= _DBUS_POLLERR;
1183 #endif /* USE_CHRIS_IMPL */
1189 /******************************************************************************
1191 Original CVS version of dbus-sysdeps.c
1193 ******************************************************************************/
1194 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
1195 /* dbus-sysdeps.c Wrappers around system/libc features (internal to D-Bus implementation)
1197 * Copyright (C) 2002, 2003 Red Hat, Inc.
1198 * Copyright (C) 2003 CodeFactory AB
1199 * Copyright (C) 2005 Novell, Inc.
1201 * Licensed under the Academic Free License version 2.1
1203 * This program is free software; you can redistribute it and/or modify
1204 * it under the terms of the GNU General Public License as published by
1205 * the Free Software Foundation; either version 2 of the License, or
1206 * (at your option) any later version.
1208 * This program is distributed in the hope that it will be useful,
1209 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1210 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1211 * GNU General Public License for more details.
1213 * You should have received a copy of the GNU General Public License
1214 * along with this program; if not, write to the Free Software
1215 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1221 * Exit the process, returning the given value.
1223 * @param code the exit code
1226 _dbus_exit (int code)
1232 * Creates a socket and connects to a socket at the given host
1233 * and port. The connection fd is returned, and is set up as
1236 * @param host the host name to connect to
1237 * @param port the port to connect to
1238 * @param family the address family to listen on, NULL for all
1239 * @param error return location for error code
1240 * @returns connection file descriptor or -1 on error
1243 _dbus_connect_tcp_socket (const char *host,
1248 return _dbus_connect_tcp_socket_with_nonce (host, port, family, (const char*)NULL, error);
1252 _dbus_connect_tcp_socket_with_nonce (const char *host,
1255 const char *noncefile,
1259 struct addrinfo hints;
1260 struct addrinfo *ai, *tmp;
1262 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1264 _dbus_win_startup_winsock ();
1266 fd = socket (AF_INET, SOCK_STREAM, 0);
1268 if (DBUS_SOCKET_IS_INVALID (fd))
1270 DBUS_SOCKET_SET_ERRNO ();
1271 dbus_set_error (error,
1272 _dbus_error_from_errno (errno),
1273 "Failed to create socket: %s",
1274 _dbus_strerror (errno));
1279 _DBUS_ASSERT_ERROR_IS_CLEAR(error);
1284 hints.ai_family = AF_UNSPEC;
1285 else if (!strcmp(family, "ipv4"))
1286 hints.ai_family = AF_INET;
1287 else if (!strcmp(family, "ipv6"))
1288 hints.ai_family = AF_INET6;
1291 dbus_set_error (error,
1292 _dbus_error_from_errno (errno),
1293 "Unknown address family %s", family);
1296 hints.ai_protocol = IPPROTO_TCP;
1297 hints.ai_socktype = SOCK_STREAM;
1298 #ifdef AI_ADDRCONFIG
1299 hints.ai_flags = AI_ADDRCONFIG;
1304 if ((res = getaddrinfo(host, port, &hints, &ai)) != 0)
1306 dbus_set_error (error,
1307 _dbus_error_from_errno (errno),
1308 "Failed to lookup host/port: \"%s:%s\": %s (%d)",
1309 host, port, gai_strerror(res), res);
1317 if ((fd = socket (tmp->ai_family, SOCK_STREAM, 0)) < 0)
1320 dbus_set_error (error,
1321 _dbus_error_from_errno (errno),
1322 "Failed to open socket: %s",
1323 _dbus_strerror (errno));
1326 _DBUS_ASSERT_ERROR_IS_CLEAR(error);
1328 if (connect (fd, (struct sockaddr*) tmp->ai_addr, tmp->ai_addrlen) != 0)
1342 dbus_set_error (error,
1343 _dbus_error_from_errno (errno),
1344 "Failed to connect to socket \"%s:%s\" %s",
1345 host, port, _dbus_strerror(errno));
1349 if ( noncefile != NULL )
1351 DBusString noncefileStr;
1353 if (!_dbus_string_init (&noncefileStr) ||
1354 !_dbus_string_append(&noncefileStr, noncefile))
1357 dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1361 ret = _dbus_send_nonce (fd, &noncefileStr, error);
1363 _dbus_string_free (&noncefileStr);
1372 if (!_dbus_set_fd_nonblocking (fd, error) )
1382 * Creates a socket and binds it to the given path, then listens on
1383 * the socket. The socket is set to be nonblocking. In case of port=0
1384 * a random free port is used and returned in the port parameter.
1385 * If inaddr_any is specified, the hostname is ignored.
1387 * @param host the host name to listen on
1388 * @param port the port to listen on, if zero a free port will be used
1389 * @param family the address family to listen on, NULL for all
1390 * @param retport string to return the actual port listened on
1391 * @param fds_p location to store returned file descriptors
1392 * @param error return location for errors
1393 * @returns the number of listening file descriptors or -1 on error
1397 _dbus_listen_tcp_socket (const char *host,
1400 DBusString *retport,
1404 int nlisten_fd = 0, *listen_fd = NULL, res, i, port_num = -1;
1405 struct addrinfo hints;
1406 struct addrinfo *ai, *tmp;
1408 // On Vista, sockaddr_gen must be a sockaddr_in6, and not a sockaddr_in6_old
1409 //That's required for family == IPv6(which is the default on Vista if family is not given)
1410 //So we use our own union instead of sockaddr_gen:
1413 struct sockaddr Address;
1414 struct sockaddr_in AddressIn;
1415 struct sockaddr_in6 AddressIn6;
1419 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1421 _dbus_win_startup_winsock ();
1426 hints.ai_family = AF_UNSPEC;
1427 else if (!strcmp(family, "ipv4"))
1428 hints.ai_family = AF_INET;
1429 else if (!strcmp(family, "ipv6"))
1430 hints.ai_family = AF_INET6;
1433 dbus_set_error (error,
1434 _dbus_error_from_errno (errno),
1435 "Unknown address family %s", family);
1439 hints.ai_protocol = IPPROTO_TCP;
1440 hints.ai_socktype = SOCK_STREAM;
1441 #ifdef AI_ADDRCONFIG
1442 hints.ai_flags = AI_ADDRCONFIG | AI_PASSIVE;
1444 hints.ai_flags = AI_PASSIVE;
1447 redo_lookup_with_port:
1448 if ((res = getaddrinfo(host, port, &hints, &ai)) != 0 || !ai)
1450 dbus_set_error (error,
1451 _dbus_error_from_errno (errno),
1452 "Failed to lookup host/port: \"%s:%s\": %s (%d)",
1453 host ? host : "*", port, gai_strerror(res), res);
1460 int fd = -1, *newlisten_fd;
1461 if ((fd = socket (tmp->ai_family, SOCK_STREAM, 0)) < 0)
1463 dbus_set_error (error,
1464 _dbus_error_from_errno (errno),
1465 "Failed to open socket: %s",
1466 _dbus_strerror (errno));
1469 _DBUS_ASSERT_ERROR_IS_CLEAR(error);
1471 if (bind (fd, (struct sockaddr*) tmp->ai_addr, tmp->ai_addrlen) == SOCKET_ERROR)
1474 dbus_set_error (error, _dbus_error_from_errno (errno),
1475 "Failed to bind socket \"%s:%s\": %s",
1476 host ? host : "*", port, _dbus_strerror (errno));
1480 if (listen (fd, 30 /* backlog */) == SOCKET_ERROR)
1483 dbus_set_error (error, _dbus_error_from_errno (errno),
1484 "Failed to listen on socket \"%s:%s\": %s",
1485 host ? host : "*", port, _dbus_strerror (errno));
1489 newlisten_fd = dbus_realloc(listen_fd, sizeof(int)*(nlisten_fd+1));
1493 dbus_set_error (error, _dbus_error_from_errno (errno),
1494 "Failed to allocate file handle array: %s",
1495 _dbus_strerror (errno));
1498 listen_fd = newlisten_fd;
1499 listen_fd[nlisten_fd] = fd;
1502 if (!_dbus_string_get_length(retport))
1504 /* If the user didn't specify a port, or used 0, then
1505 the kernel chooses a port. After the first address
1506 is bound to, we need to force all remaining addresses
1507 to use the same port */
1508 if (!port || !strcmp(port, "0"))
1510 mysockaddr_gen addr;
1511 socklen_t addrlen = sizeof(addr);
1514 if ((res = getsockname(fd, &addr.Address, &addrlen)) != 0)
1516 dbus_set_error (error, _dbus_error_from_errno (errno),
1517 "Failed to resolve port \"%s:%s\": %s (%d)",
1518 host ? host : "*", port, gai_strerror(res), res);
1521 snprintf( portbuf, sizeof( portbuf ) - 1, "%d", addr.AddressIn.sin_port );
1522 if (!_dbus_string_append(retport, portbuf))
1524 dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1528 /* Release current address list & redo lookup */
1529 port = _dbus_string_get_const_data(retport);
1531 goto redo_lookup_with_port;
1535 if (!_dbus_string_append(retport, port))
1537 dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1550 errno = WSAEADDRINUSE;
1551 dbus_set_error (error, _dbus_error_from_errno (errno),
1552 "Failed to bind socket \"%s:%s\": %s",
1553 host ? host : "*", port, _dbus_strerror (errno));
1557 sscanf(_dbus_string_get_const_data(retport), "%d", &port_num);
1559 for (i = 0 ; i < nlisten_fd ; i++)
1561 if (!_dbus_set_fd_nonblocking (listen_fd[i], error))
1574 for (i = 0 ; i < nlisten_fd ; i++)
1575 closesocket (listen_fd[i]);
1576 dbus_free(listen_fd);
1582 * Accepts a connection on a listening socket.
1583 * Handles EINTR for you.
1585 * @param listen_fd the listen file descriptor
1586 * @returns the connection fd of the client, or -1 on error
1589 _dbus_accept (int listen_fd)
1594 client_fd = accept (listen_fd, NULL, NULL);
1596 if (DBUS_SOCKET_IS_INVALID (client_fd))
1598 DBUS_SOCKET_SET_ERRNO ();
1603 _dbus_verbose ("client fd %d accepted\n", client_fd);
1612 _dbus_send_credentials_socket (int handle,
1615 /* FIXME: for the session bus credentials shouldn't matter (?), but
1616 * for the system bus they are presumably essential. A rough outline
1617 * of a way to implement the credential transfer would be this:
1619 * client waits to *read* a byte.
1621 * server creates a named pipe with a random name, sends a byte
1622 * contining its length, and its name.
1624 * client reads the name, connects to it (using Win32 API).
1626 * server waits for connection to the named pipe, then calls
1627 * ImpersonateNamedPipeClient(), notes its now-current credentials,
1628 * calls RevertToSelf(), closes its handles to the named pipe, and
1629 * is done. (Maybe there is some other way to get the SID of a named
1630 * pipe client without having to use impersonation?)
1632 * client closes its handles and is done.
1634 * Ralf: Why not sending credentials over the given this connection ?
1635 * Using named pipes makes it impossible to be connected from a unix client.
1641 _dbus_string_init_const_len (&buf, "\0", 1);
1643 bytes_written = _dbus_write_socket (handle, &buf, 0, 1 );
1645 if (bytes_written < 0 && errno == EINTR)
1648 if (bytes_written < 0)
1650 dbus_set_error (error, _dbus_error_from_errno (errno),
1651 "Failed to write credentials byte: %s",
1652 _dbus_strerror (errno));
1655 else if (bytes_written == 0)
1657 dbus_set_error (error, DBUS_ERROR_IO_ERROR,
1658 "wrote zero bytes writing credentials byte");
1663 _dbus_assert (bytes_written == 1);
1664 _dbus_verbose ("wrote 1 zero byte, credential sending isn't implemented yet\n");
1671 * Reads a single byte which must be nul (an error occurs otherwise),
1672 * and reads unix credentials if available. Fills in pid/uid/gid with
1673 * -1 if no credentials are available. Return value indicates whether
1674 * a byte was read, not whether we got valid credentials. On some
1675 * systems, such as Linux, reading/writing the byte isn't actually
1676 * required, but we do it anyway just to avoid multiple codepaths.
1678 * Fails if no byte is available, so you must select() first.
1680 * The point of the byte is that on some systems we have to
1681 * use sendmsg()/recvmsg() to transmit credentials.
1683 * @param client_fd the client file descriptor
1684 * @param credentials struct to fill with credentials of client
1685 * @param error location to store error code
1686 * @returns #TRUE on success
1689 _dbus_read_credentials_socket (int handle,
1690 DBusCredentials *credentials,
1696 // could fail due too OOM
1697 if (_dbus_string_init(&buf))
1699 bytes_read = _dbus_read_socket(handle, &buf, 1 );
1702 _dbus_verbose("got one zero byte from server");
1704 _dbus_string_free(&buf);
1707 _dbus_credentials_add_from_current_process (credentials);
1708 _dbus_verbose("FIXME: get faked credentials from current process");
1714 * Checks to make sure the given directory is
1715 * private to the user
1717 * @param dir the name of the directory
1718 * @param error error return
1719 * @returns #FALSE on failure
1722 _dbus_check_dir_is_private_to_user (DBusString *dir, DBusError *error)
1724 const char *directory;
1727 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1734 * Appends the given filename to the given directory.
1736 * @todo it might be cute to collapse multiple '/' such as "foo//"
1739 * @param dir the directory name
1740 * @param next_component the filename
1741 * @returns #TRUE on success
1744 _dbus_concat_dir_and_file (DBusString *dir,
1745 const DBusString *next_component)
1747 dbus_bool_t dir_ends_in_slash;
1748 dbus_bool_t file_starts_with_slash;
1750 if (_dbus_string_get_length (dir) == 0 ||
1751 _dbus_string_get_length (next_component) == 0)
1755 ('/' == _dbus_string_get_byte (dir, _dbus_string_get_length (dir) - 1) ||
1756 '\\' == _dbus_string_get_byte (dir, _dbus_string_get_length (dir) - 1));
1758 file_starts_with_slash =
1759 ('/' == _dbus_string_get_byte (next_component, 0) ||
1760 '\\' == _dbus_string_get_byte (next_component, 0));
1762 if (dir_ends_in_slash && file_starts_with_slash)
1764 _dbus_string_shorten (dir, 1);
1766 else if (!(dir_ends_in_slash || file_starts_with_slash))
1768 if (!_dbus_string_append_byte (dir, '\\'))
1772 return _dbus_string_copy (next_component, 0, dir,
1773 _dbus_string_get_length (dir));
1776 /*---------------- DBusCredentials ----------------------------------*/
1779 * Adds the credentials corresponding to the given username.
1781 * @param credentials credentials to fill in
1782 * @param username the username
1783 * @returns #TRUE if the username existed and we got some credentials
1786 _dbus_credentials_add_from_user (DBusCredentials *credentials,
1787 const DBusString *username)
1789 return _dbus_credentials_add_windows_sid (credentials,
1790 _dbus_string_get_const_data(username));
1794 * Adds the credentials of the current process to the
1795 * passed-in credentials object.
1797 * @param credentials credentials to add to
1798 * @returns #FALSE if no memory; does not properly roll back on failure, so only some credentials may have been added
1802 _dbus_credentials_add_from_current_process (DBusCredentials *credentials)
1804 dbus_bool_t retval = FALSE;
1807 if (!_dbus_getsid(&sid))
1810 if (!_dbus_credentials_add_unix_pid(credentials, _dbus_getpid()))
1813 if (!_dbus_credentials_add_windows_sid (credentials,sid))
1828 * Append to the string the identity we would like to have when we
1829 * authenticate, on UNIX this is the current process UID and on
1830 * Windows something else, probably a Windows SID string. No escaping
1831 * is required, that is done in dbus-auth.c. The username here
1832 * need not be anything human-readable, it can be the machine-readable
1833 * form i.e. a user id.
1835 * @param str the string to append to
1836 * @returns #FALSE on no memory
1837 * @todo to which class belongs this
1840 _dbus_append_user_from_current_process (DBusString *str)
1842 dbus_bool_t retval = FALSE;
1845 if (!_dbus_getsid(&sid))
1848 retval = _dbus_string_append (str,sid);
1855 * Gets our process ID
1856 * @returns process ID
1861 return GetCurrentProcessId ();
1864 /** nanoseconds in a second */
1865 #define NANOSECONDS_PER_SECOND 1000000000
1866 /** microseconds in a second */
1867 #define MICROSECONDS_PER_SECOND 1000000
1868 /** milliseconds in a second */
1869 #define MILLISECONDS_PER_SECOND 1000
1870 /** nanoseconds in a millisecond */
1871 #define NANOSECONDS_PER_MILLISECOND 1000000
1872 /** microseconds in a millisecond */
1873 #define MICROSECONDS_PER_MILLISECOND 1000
1876 * Sleeps the given number of milliseconds.
1877 * @param milliseconds number of milliseconds
1880 _dbus_sleep_milliseconds (int milliseconds)
1882 Sleep (milliseconds);
1887 * Get current time, as in gettimeofday().
1889 * @param tv_sec return location for number of seconds
1890 * @param tv_usec return location for number of microseconds
1893 _dbus_get_current_time (long *tv_sec,
1897 dbus_uint64_t *time64 = (dbus_uint64_t *) &ft;
1899 GetSystemTimeAsFileTime (&ft);
1901 /* Convert from 100s of nanoseconds since 1601-01-01
1902 * to Unix epoch. Yes, this is Y2038 unsafe.
1904 *time64 -= DBUS_INT64_CONSTANT (116444736000000000);
1908 *tv_sec = *time64 / 1000000;
1911 *tv_usec = *time64 % 1000000;
1916 * signal (SIGPIPE, SIG_IGN);
1919 _dbus_disable_sigpipe (void)
1924 * Creates a directory; succeeds if the directory
1925 * is created or already existed.
1927 * @param filename directory filename
1928 * @param error initialized error object
1929 * @returns #TRUE on success
1932 _dbus_create_directory (const DBusString *filename,
1935 const char *filename_c;
1937 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1939 filename_c = _dbus_string_get_const_data (filename);
1941 if (!CreateDirectory (filename_c, NULL))
1943 if (GetLastError () == ERROR_ALREADY_EXISTS)
1946 dbus_set_error (error, DBUS_ERROR_FAILED,
1947 "Failed to create directory %s: %s\n",
1948 filename_c, strerror (errno));
1957 * Generates the given number of random bytes,
1958 * using the best mechanism we can come up with.
1960 * @param str the string
1961 * @param n_bytes the number of random bytes to append to string
1962 * @returns #TRUE on success, #FALSE if no memory
1965 _dbus_generate_random_bytes (DBusString *str,
1972 old_len = _dbus_string_get_length (str);
1974 if (!_dbus_string_lengthen (str, n_bytes))
1977 p = _dbus_string_get_data_len (str, old_len, n_bytes);
1979 if (!CryptAcquireContext (&hprov, NULL, NULL, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT))
1982 if (!CryptGenRandom (hprov, n_bytes, p))
1984 CryptReleaseContext (hprov, 0);
1988 CryptReleaseContext (hprov, 0);
1994 * Gets the temporary files directory by inspecting the environment variables
1995 * TMPDIR, TMP, and TEMP in that order. If none of those are set "/tmp" is returned
1997 * @returns location of temp directory
2000 _dbus_get_tmpdir(void)
2002 static const char* tmpdir = NULL;
2003 static char buf[1000];
2009 if (!GetTempPath (sizeof (buf), buf))
2011 _dbus_warn ("GetTempPath failed\n");
2015 /* Drop terminating backslash or slash */
2016 last_slash = _mbsrchr (buf, '\\');
2017 if (last_slash > buf && last_slash[1] == '\0')
2018 last_slash[0] = '\0';
2019 last_slash = _mbsrchr (buf, '/');
2020 if (last_slash > buf && last_slash[1] == '\0')
2021 last_slash[0] = '\0';
2026 _dbus_assert(tmpdir != NULL);
2033 * Deletes the given file.
2035 * @param filename the filename
2036 * @param error error location
2038 * @returns #TRUE if unlink() succeeded
2041 _dbus_delete_file (const DBusString *filename,
2044 const char *filename_c;
2046 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2048 filename_c = _dbus_string_get_const_data (filename);
2050 if (_unlink (filename_c) < 0)
2052 dbus_set_error (error, DBUS_ERROR_FAILED,
2053 "Failed to delete file %s: %s\n",
2054 filename_c, strerror (errno));
2061 #if !defined (DBUS_DISABLE_ASSERT) || defined(DBUS_BUILD_TESTS)
2073 * Backtrace Generator
2075 * Copyright 2004 Eric Poech
2076 * Copyright 2004 Robert Shearman
2078 * This library is free software; you can redistribute it and/or
2079 * modify it under the terms of the GNU Lesser General Public
2080 * License as published by the Free Software Foundation; either
2081 * version 2.1 of the License, or (at your option) any later version.
2083 * This library is distributed in the hope that it will be useful,
2084 * but WITHOUT ANY WARRANTY; without even the implied warranty of
2085 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2086 * Lesser General Public License for more details.
2088 * You should have received a copy of the GNU Lesser General Public
2089 * License along with this library; if not, write to the Free Software
2090 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2094 #include <imagehlp.h>
2097 #define DPRINTF _dbus_warn
2105 //#define MAKE_FUNCPTR(f) static typeof(f) * p##f
2107 //MAKE_FUNCPTR(StackWalk);
2108 //MAKE_FUNCPTR(SymGetModuleBase);
2109 //MAKE_FUNCPTR(SymFunctionTableAccess);
2110 //MAKE_FUNCPTR(SymInitialize);
2111 //MAKE_FUNCPTR(SymGetSymFromAddr);
2112 //MAKE_FUNCPTR(SymGetModuleInfo);
2113 static BOOL (WINAPI *pStackWalk)(
2117 LPSTACKFRAME StackFrame,
2118 PVOID ContextRecord,
2119 PREAD_PROCESS_MEMORY_ROUTINE ReadMemoryRoutine,
2120 PFUNCTION_TABLE_ACCESS_ROUTINE FunctionTableAccessRoutine,
2121 PGET_MODULE_BASE_ROUTINE GetModuleBaseRoutine,
2122 PTRANSLATE_ADDRESS_ROUTINE TranslateAddress
2124 static DWORD (WINAPI *pSymGetModuleBase)(
2128 static PVOID (WINAPI *pSymFunctionTableAccess)(
2132 static BOOL (WINAPI *pSymInitialize)(
2134 PSTR UserSearchPath,
2137 static BOOL (WINAPI *pSymGetSymFromAddr)(
2140 PDWORD Displacement,
2141 PIMAGEHLP_SYMBOL Symbol
2143 static BOOL (WINAPI *pSymGetModuleInfo)(
2146 PIMAGEHLP_MODULE ModuleInfo
2148 static DWORD (WINAPI *pSymSetOptions)(
2153 static BOOL init_backtrace()
2155 HMODULE hmodDbgHelp = LoadLibraryA("dbghelp");
2157 #define GETFUNC(x) \
2158 p##x = (typeof(x)*)GetProcAddress(hmodDbgHelp, #x); \
2166 // GETFUNC(StackWalk);
2167 // GETFUNC(SymGetModuleBase);
2168 // GETFUNC(SymFunctionTableAccess);
2169 // GETFUNC(SymInitialize);
2170 // GETFUNC(SymGetSymFromAddr);
2171 // GETFUNC(SymGetModuleInfo);
2175 pStackWalk = (BOOL (WINAPI *)(
2179 LPSTACKFRAME StackFrame,
2180 PVOID ContextRecord,
2181 PREAD_PROCESS_MEMORY_ROUTINE ReadMemoryRoutine,
2182 PFUNCTION_TABLE_ACCESS_ROUTINE FunctionTableAccessRoutine,
2183 PGET_MODULE_BASE_ROUTINE GetModuleBaseRoutine,
2184 PTRANSLATE_ADDRESS_ROUTINE TranslateAddress
2185 ))GetProcAddress (hmodDbgHelp, FUNC(StackWalk));
2186 pSymGetModuleBase=(DWORD (WINAPI *)(
2189 ))GetProcAddress (hmodDbgHelp, FUNC(SymGetModuleBase));
2190 pSymFunctionTableAccess=(PVOID (WINAPI *)(
2193 ))GetProcAddress (hmodDbgHelp, FUNC(SymFunctionTableAccess));
2194 pSymInitialize = (BOOL (WINAPI *)(
2196 PSTR UserSearchPath,
2198 ))GetProcAddress (hmodDbgHelp, FUNC(SymInitialize));
2199 pSymGetSymFromAddr = (BOOL (WINAPI *)(
2202 PDWORD Displacement,
2203 PIMAGEHLP_SYMBOL Symbol
2204 ))GetProcAddress (hmodDbgHelp, FUNC(SymGetSymFromAddr));
2205 pSymGetModuleInfo = (BOOL (WINAPI *)(
2208 PIMAGEHLP_MODULE ModuleInfo
2209 ))GetProcAddress (hmodDbgHelp, FUNC(SymGetModuleInfo));
2210 pSymSetOptions = (DWORD (WINAPI *)(
2212 ))GetProcAddress (hmodDbgHelp, FUNC(SymSetOptions));
2215 pSymSetOptions(SYMOPT_UNDNAME);
2217 pSymInitialize(GetCurrentProcess(), NULL, TRUE);
2222 static void dump_backtrace_for_thread(HANDLE hThread)
2229 if (!init_backtrace())
2232 /* can't use this function for current thread as GetThreadContext
2233 * doesn't support getting context from current thread */
2234 if (hThread == GetCurrentThread())
2237 DPRINTF("Backtrace:\n");
2239 _DBUS_ZERO(context);
2240 context.ContextFlags = CONTEXT_FULL;
2242 SuspendThread(hThread);
2244 if (!GetThreadContext(hThread, &context))
2246 DPRINTF("Couldn't get thread context (error %ld)\n", GetLastError());
2247 ResumeThread(hThread);
2254 sf.AddrFrame.Offset = context.Ebp;
2255 sf.AddrFrame.Mode = AddrModeFlat;
2256 sf.AddrPC.Offset = context.Eip;
2257 sf.AddrPC.Mode = AddrModeFlat;
2258 dwImageType = IMAGE_FILE_MACHINE_I386;
2260 # error You need to fill in the STACKFRAME structure for your architecture
2263 while (pStackWalk(dwImageType, GetCurrentProcess(),
2264 hThread, &sf, &context, NULL, pSymFunctionTableAccess,
2265 pSymGetModuleBase, NULL))
2268 IMAGEHLP_SYMBOL * pSymbol = (IMAGEHLP_SYMBOL *)buffer;
2269 DWORD dwDisplacement;
2271 pSymbol->SizeOfStruct = sizeof(IMAGEHLP_SYMBOL);
2272 pSymbol->MaxNameLength = sizeof(buffer) - sizeof(IMAGEHLP_SYMBOL) + 1;
2274 if (!pSymGetSymFromAddr(GetCurrentProcess(), sf.AddrPC.Offset,
2275 &dwDisplacement, pSymbol))
2277 IMAGEHLP_MODULE ModuleInfo;
2278 ModuleInfo.SizeOfStruct = sizeof(ModuleInfo);
2280 if (!pSymGetModuleInfo(GetCurrentProcess(), sf.AddrPC.Offset,
2282 DPRINTF("1\t%p\n", (void*)sf.AddrPC.Offset);
2284 DPRINTF("2\t%s+0x%lx\n", ModuleInfo.ImageName,
2285 sf.AddrPC.Offset - ModuleInfo.BaseOfImage);
2287 else if (dwDisplacement)
2288 DPRINTF("3\t%s+0x%lx\n", pSymbol->Name, dwDisplacement);
2290 DPRINTF("4\t%s\n", pSymbol->Name);
2293 ResumeThread(hThread);
2296 static DWORD WINAPI dump_thread_proc(LPVOID lpParameter)
2298 dump_backtrace_for_thread((HANDLE)lpParameter);
2302 /* cannot get valid context from current thread, so we have to execute
2303 * backtrace from another thread */
2304 static void dump_backtrace()
2306 HANDLE hCurrentThread;
2309 DuplicateHandle(GetCurrentProcess(), GetCurrentThread(),
2310 GetCurrentProcess(), &hCurrentThread, 0, FALSE, DUPLICATE_SAME_ACCESS);
2311 hThread = CreateThread(NULL, 0, dump_thread_proc, (LPVOID)hCurrentThread,
2313 WaitForSingleObject(hThread, INFINITE);
2314 CloseHandle(hThread);
2315 CloseHandle(hCurrentThread);
2318 void _dbus_print_backtrace(void)
2324 void _dbus_print_backtrace(void)
2326 _dbus_verbose (" D-Bus not compiled with backtrace support\n");
2330 static dbus_uint32_t fromAscii(char ascii)
2332 if(ascii >= '0' && ascii <= '9')
2334 if(ascii >= 'A' && ascii <= 'F')
2335 return ascii - 'A' + 10;
2336 if(ascii >= 'a' && ascii <= 'f')
2337 return ascii - 'a' + 10;
2341 dbus_bool_t _dbus_read_local_machine_uuid (DBusGUID *machine_id,
2342 dbus_bool_t create_if_not_found,
2349 HW_PROFILE_INFOA info;
2350 char *lpc = &info.szHwProfileGuid[0];
2353 // the hw-profile guid lives long enough
2354 if(!GetCurrentHwProfileA(&info))
2356 dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL); // FIXME
2360 // Form: {12340001-4980-1920-6788-123456789012}
2363 u = ((fromAscii(lpc[0]) << 0) |
2364 (fromAscii(lpc[1]) << 4) |
2365 (fromAscii(lpc[2]) << 8) |
2366 (fromAscii(lpc[3]) << 12) |
2367 (fromAscii(lpc[4]) << 16) |
2368 (fromAscii(lpc[5]) << 20) |
2369 (fromAscii(lpc[6]) << 24) |
2370 (fromAscii(lpc[7]) << 28));
2371 machine_id->as_uint32s[0] = u;
2375 u = ((fromAscii(lpc[0]) << 0) |
2376 (fromAscii(lpc[1]) << 4) |
2377 (fromAscii(lpc[2]) << 8) |
2378 (fromAscii(lpc[3]) << 12) |
2379 (fromAscii(lpc[5]) << 16) |
2380 (fromAscii(lpc[6]) << 20) |
2381 (fromAscii(lpc[7]) << 24) |
2382 (fromAscii(lpc[8]) << 28));
2383 machine_id->as_uint32s[1] = u;
2387 u = ((fromAscii(lpc[0]) << 0) |
2388 (fromAscii(lpc[1]) << 4) |
2389 (fromAscii(lpc[2]) << 8) |
2390 (fromAscii(lpc[3]) << 12) |
2391 (fromAscii(lpc[5]) << 16) |
2392 (fromAscii(lpc[6]) << 20) |
2393 (fromAscii(lpc[7]) << 24) |
2394 (fromAscii(lpc[8]) << 28));
2395 machine_id->as_uint32s[2] = u;
2399 u = ((fromAscii(lpc[0]) << 0) |
2400 (fromAscii(lpc[1]) << 4) |
2401 (fromAscii(lpc[2]) << 8) |
2402 (fromAscii(lpc[3]) << 12) |
2403 (fromAscii(lpc[4]) << 16) |
2404 (fromAscii(lpc[5]) << 20) |
2405 (fromAscii(lpc[6]) << 24) |
2406 (fromAscii(lpc[7]) << 28));
2407 machine_id->as_uint32s[3] = u;
2413 HANDLE _dbus_global_lock (const char *mutexname)
2418 mutex = CreateMutex( NULL, FALSE, mutexname );
2424 gotMutex = WaitForSingleObject( mutex, INFINITE );
2427 case WAIT_ABANDONED:
2428 ReleaseMutex (mutex);
2429 CloseHandle (mutex);
2440 void _dbus_global_unlock (HANDLE mutex)
2442 ReleaseMutex (mutex);
2443 CloseHandle (mutex);
2446 // for proper cleanup in dbus-daemon
2447 static HANDLE hDBusDaemonMutex = NULL;
2448 static HANDLE hDBusSharedMem = NULL;
2449 // sync _dbus_daemon_publish_session_bus_address, _dbus_daemon_unpublish_session_bus_address and _dbus_daemon_already_runs
2450 static const char *cUniqueDBusInitMutex = "UniqueDBusInitMutex";
2451 // sync _dbus_get_autolaunch_address
2452 static const char *cDBusAutolaunchMutex = "DBusAutolaunchMutex";
2453 // mutex to determine if dbus-daemon is already started (per user)
2454 static const char *cDBusDaemonMutex = "DBusDaemonMutex";
2455 // named shm for dbus adress info (per user)
2457 static const char *cDBusDaemonAddressInfo = "DBusDaemonAddressInfoDebug";
2459 static const char *cDBusDaemonAddressInfo = "DBusDaemonAddressInfo";
2464 _dbus_daemon_publish_session_bus_address (const char* address)
2467 char *shared_addr = NULL;
2470 _dbus_assert (address);
2471 // before _dbus_global_lock to keep correct lock/release order
2472 hDBusDaemonMutex = CreateMutex( NULL, FALSE, cDBusDaemonMutex );
2473 ret = WaitForSingleObject( hDBusDaemonMutex, 1000 );
2474 if ( ret != WAIT_OBJECT_0 ) {
2475 _dbus_warn("Could not lock mutex %s (return code %d). daemon already running? Bus address not published.\n", cDBusDaemonMutex, ret );
2479 // sync _dbus_daemon_publish_session_bus_address, _dbus_daemon_unpublish_session_bus_address and _dbus_daemon_already_runs
2480 lock = _dbus_global_lock( cUniqueDBusInitMutex );
2483 hDBusSharedMem = CreateFileMapping( INVALID_HANDLE_VALUE, NULL, PAGE_READWRITE,
2484 0, strlen( address ) + 1, cDBusDaemonAddressInfo );
2485 _dbus_assert( hDBusSharedMem );
2487 shared_addr = MapViewOfFile( hDBusSharedMem, FILE_MAP_WRITE, 0, 0, 0 );
2489 _dbus_assert (shared_addr);
2491 strcpy( shared_addr, address);
2494 UnmapViewOfFile( shared_addr );
2496 _dbus_global_unlock( lock );
2500 _dbus_daemon_unpublish_session_bus_address (void)
2504 // sync _dbus_daemon_publish_session_bus_address, _dbus_daemon_unpublish_session_bus_address and _dbus_daemon_already_runs
2505 lock = _dbus_global_lock( cUniqueDBusInitMutex );
2507 CloseHandle( hDBusSharedMem );
2509 hDBusSharedMem = NULL;
2511 ReleaseMutex( hDBusDaemonMutex );
2513 CloseHandle( hDBusDaemonMutex );
2515 hDBusDaemonMutex = NULL;
2517 _dbus_global_unlock( lock );
2521 _dbus_get_autolaunch_shm (DBusString *address)
2529 // we know that dbus-daemon is available, so we wait until shm is available
2530 sharedMem = OpenFileMapping( FILE_MAP_READ, FALSE, cDBusDaemonAddressInfo );
2531 if( sharedMem == 0 )
2533 if ( sharedMem != 0)
2537 if( sharedMem == 0 )
2540 shared_addr = MapViewOfFile( sharedMem, FILE_MAP_READ, 0, 0, 0 );
2545 _dbus_string_init( address );
2547 _dbus_string_append( address, shared_addr );
2550 UnmapViewOfFile( shared_addr );
2552 CloseHandle( sharedMem );
2558 _dbus_daemon_already_runs (DBusString *address)
2562 dbus_bool_t bRet = TRUE;
2564 // sync _dbus_daemon_publish_session_bus_address, _dbus_daemon_unpublish_session_bus_address and _dbus_daemon_already_runs
2565 lock = _dbus_global_lock( cUniqueDBusInitMutex );
2568 daemon = CreateMutex( NULL, FALSE, cDBusDaemonMutex );
2569 if(WaitForSingleObject( daemon, 10 ) != WAIT_TIMEOUT)
2571 ReleaseMutex (daemon);
2572 CloseHandle (daemon);
2574 _dbus_global_unlock( lock );
2579 bRet = _dbus_get_autolaunch_shm( address );
2582 CloseHandle ( daemon );
2584 _dbus_global_unlock( lock );
2590 _dbus_get_autolaunch_address (DBusString *address,
2595 PROCESS_INFORMATION pi;
2596 dbus_bool_t retval = FALSE;
2598 char dbus_exe_path[MAX_PATH];
2599 char dbus_args[MAX_PATH * 2];
2600 const char * daemon_name = DBUS_DAEMON_NAME ".exe";
2602 mutex = _dbus_global_lock ( cDBusAutolaunchMutex );
2604 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2606 if (_dbus_daemon_already_runs(address))
2608 _dbus_verbose("found already running dbus daemon\n");
2613 if (!SearchPathA(NULL, daemon_name, NULL, sizeof(dbus_exe_path), dbus_exe_path, &lpFile))
2615 printf ("please add the path to %s to your PATH environment variable\n", daemon_name);
2616 printf ("or start the daemon manually\n\n");
2622 ZeroMemory( &si, sizeof(si) );
2624 ZeroMemory( &pi, sizeof(pi) );
2626 _snprintf(dbus_args, sizeof(dbus_args) - 1, "\"%s\" %s", dbus_exe_path, " --session");
2628 // argv[i] = "--config-file=bus\\session.conf";
2629 // printf("create process \"%s\" %s\n", dbus_exe_path, dbus_args);
2630 if(CreateProcessA(dbus_exe_path, dbus_args, NULL, NULL, FALSE, CREATE_NO_WINDOW, NULL, NULL, &si, &pi))
2633 retval = _dbus_get_autolaunch_shm( address );
2636 if (retval == FALSE)
2637 dbus_set_error_const (error, DBUS_ERROR_FAILED, "Failed to launch dbus-daemon");
2641 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2643 _DBUS_ASSERT_ERROR_IS_SET (error);
2645 _dbus_global_unlock (mutex);
2651 /** Makes the file readable by every user in the system.
2653 * @param filename the filename
2654 * @param error error location
2655 * @returns #TRUE if the file's permissions could be changed.
2658 _dbus_make_file_world_readable(const DBusString *filename,
2666 #define DBUS_STANDARD_SESSION_SERVICEDIR "/dbus-1/services"
2667 #define DBUS_STANDARD_SYSTEM_SERVICEDIR "/dbus-1/system-services"
2670 * Returns the standard directories for a session bus to look for service
2673 * On Windows this should be data directories:
2675 * %CommonProgramFiles%/dbus
2681 * @param dirs the directory list we are returning
2682 * @returns #FALSE on OOM
2686 _dbus_get_standard_session_servicedirs (DBusList **dirs)
2688 const char *common_progs;
2689 DBusString servicedir_path;
2691 if (!_dbus_string_init (&servicedir_path))
2694 if (!_dbus_string_append (&servicedir_path, DBUS_DATADIR _DBUS_PATH_SEPARATOR))
2697 common_progs = _dbus_getenv ("CommonProgramFiles");
2699 if (common_progs != NULL)
2701 if (!_dbus_string_append (&servicedir_path, common_progs))
2704 if (!_dbus_string_append (&servicedir_path, _DBUS_PATH_SEPARATOR))
2708 if (!_dbus_split_paths_and_append (&servicedir_path,
2709 DBUS_STANDARD_SESSION_SERVICEDIR,
2713 _dbus_string_free (&servicedir_path);
2717 _dbus_string_free (&servicedir_path);
2722 * Returns the standard directories for a system bus to look for service
2725 * On UNIX this should be the standard xdg freedesktop.org data directories:
2727 * XDG_DATA_DIRS=${XDG_DATA_DIRS-/usr/local/share:/usr/share}
2733 * On Windows there is no system bus and this function can return nothing.
2735 * @param dirs the directory list we are returning
2736 * @returns #FALSE on OOM
2740 _dbus_get_standard_system_servicedirs (DBusList **dirs)
2746 _DBUS_DEFINE_GLOBAL_LOCK (atomic);
2749 * Atomically increments an integer
2751 * @param atomic pointer to the integer to increment
2752 * @returns the value before incrementing
2756 _dbus_atomic_inc (DBusAtomic *atomic)
2758 // +/- 1 is needed here!
2759 // no volatile argument with mingw
2760 return InterlockedIncrement (&atomic->value) - 1;
2764 * Atomically decrement an integer
2766 * @param atomic pointer to the integer to decrement
2767 * @returns the value before decrementing
2771 _dbus_atomic_dec (DBusAtomic *atomic)
2773 // +/- 1 is needed here!
2774 // no volatile argument with mingw
2775 return InterlockedDecrement (&atomic->value) + 1;
2778 #endif /* asserts or tests enabled */
2781 * Called when the bus daemon is signaled to reload its configuration; any
2782 * caches should be nuked. Of course any caches that need explicit reload
2783 * are probably broken, but c'est la vie.
2788 _dbus_flush_caches (void)
2793 * See if errno is EAGAIN or EWOULDBLOCK (this has to be done differently
2794 * for Winsock so is abstracted)
2796 * @returns #TRUE if errno == EAGAIN or errno == EWOULDBLOCK
2799 _dbus_get_is_errno_eagain_or_ewouldblock (void)
2801 return errno == WSAEWOULDBLOCK;
2805 * return the absolute path of the dbus installation
2807 * @param s buffer for installation path
2808 * @param len length of buffer
2809 * @returns #FALSE on failure
2812 _dbus_get_install_root(char *prefix, int len)
2814 //To find the prefix, we cut the filename and also \bin\ if present
2820 pathLength = GetModuleFileName(_dbus_win_get_dll_hmodule(), prefix, len);
2821 if ( pathLength == 0 || GetLastError() != 0 ) {
2825 lastSlash = _mbsrchr(prefix, '\\');
2826 if (lastSlash == NULL) {
2830 //cut off binary name
2833 //cut possible "\\bin"
2835 //this fails if we are in a double-byte system codepage and the
2836 //folder's name happens to end with the *bytes*
2837 //"\\bin"... (I.e. the second byte of some Han character and then
2838 //the Latin "bin", but that is not likely I think...
2839 if (lastSlash - prefix >= 4 && strnicmp(lastSlash - 4, "\\bin", 4) == 0)
2841 else if (lastSlash - prefix >= 10 && strnicmp(lastSlash - 10, "\\bin\\debug", 10) == 0)
2843 else if (lastSlash - prefix >= 12 && strnicmp(lastSlash - 12, "\\bin\\release", 12) == 0)
2850 find config file either from installation or build root according to
2851 the following path layout
2853 bin/dbus-daemon[d].exe
2854 etc/<config-file>.conf *or* etc/dbus-1/<config-file>.conf
2855 (the former above is what dbus4win uses, the latter above is
2856 what a "normal" Unix-style "make install" uses)
2859 bin/dbus-daemon[d].exe
2860 bus/<config-file>.conf
2863 _dbus_get_config_file_name(DBusString *config_file, char *s)
2865 char path[MAX_PATH*2];
2866 int path_size = sizeof(path);
2868 if (!_dbus_get_install_root(path,path_size))
2871 if(strlen(s) + 4 + strlen(path) > sizeof(path)-2)
2873 strcat(path,"etc\\");
2875 if (_dbus_file_exists(path))
2877 // find path from executable
2878 if (!_dbus_string_append (config_file, path))
2883 if (!_dbus_get_install_root(path,path_size))
2885 if(strlen(s) + 11 + strlen(path) > sizeof(path)-2)
2887 strcat(path,"etc\\dbus-1\\");
2890 if (_dbus_file_exists(path))
2892 if (!_dbus_string_append (config_file, path))
2897 if (!_dbus_get_install_root(path,path_size))
2899 if(strlen(s) + 4 + strlen(path) > sizeof(path)-2)
2901 strcat(path,"bus\\");
2904 if (_dbus_file_exists(path))
2906 if (!_dbus_string_append (config_file, path))
2915 * Append the absolute path of the system.conf file
2916 * (there is no system bus on Windows so this can just
2917 * return FALSE and print a warning or something)
2919 * @param str the string to append to
2920 * @returns #FALSE if no memory
2923 _dbus_append_system_config_file (DBusString *str)
2925 return _dbus_get_config_file_name(str, "system.conf");
2929 * Append the absolute path of the session.conf file.
2931 * @param str the string to append to
2932 * @returns #FALSE if no memory
2935 _dbus_append_session_config_file (DBusString *str)
2937 return _dbus_get_config_file_name(str, "session.conf");
2940 /* See comment in dbus-sysdeps-unix.c */
2942 _dbus_lookup_session_address (dbus_bool_t *supported,
2943 DBusString *address,
2946 /* Probably fill this in with something based on COM? */
2952 * Appends the directory in which a keyring for the given credentials
2953 * should be stored. The credentials should have either a Windows or
2954 * UNIX user in them. The directory should be an absolute path.
2956 * On UNIX the directory is ~/.dbus-keyrings while on Windows it should probably
2957 * be something else, since the dotfile convention is not normal on Windows.
2959 * @param directory string to append directory to
2960 * @param credentials credentials the directory should be for
2962 * @returns #FALSE on no memory
2965 _dbus_append_keyring_directory_for_credentials (DBusString *directory,
2966 DBusCredentials *credentials)
2971 const char *homepath;
2973 _dbus_assert (credentials != NULL);
2974 _dbus_assert (!_dbus_credentials_are_anonymous (credentials));
2976 if (!_dbus_string_init (&homedir))
2979 homepath = _dbus_getenv("HOMEPATH");
2980 if (homepath != NULL && *homepath != '\0')
2982 _dbus_string_append(&homedir,homepath);
2985 #ifdef DBUS_BUILD_TESTS
2987 const char *override;
2989 override = _dbus_getenv ("DBUS_TEST_HOMEDIR");
2990 if (override != NULL && *override != '\0')
2992 _dbus_string_set_length (&homedir, 0);
2993 if (!_dbus_string_append (&homedir, override))
2996 _dbus_verbose ("Using fake homedir for testing: %s\n",
2997 _dbus_string_get_const_data (&homedir));
3001 static dbus_bool_t already_warned = FALSE;
3002 if (!already_warned)
3004 _dbus_warn ("Using your real home directory for testing, set DBUS_TEST_HOMEDIR to avoid\n");
3005 already_warned = TRUE;
3011 _dbus_string_init_const (&dotdir, ".dbus-keyrings");
3012 if (!_dbus_concat_dir_and_file (&homedir,
3016 if (!_dbus_string_copy (&homedir, 0,
3017 directory, _dbus_string_get_length (directory))) {
3021 _dbus_string_free (&homedir);
3025 _dbus_string_free (&homedir);
3029 /** Checks if a file exists
3031 * @param file full path to the file
3032 * @returns #TRUE if file exists
3035 _dbus_file_exists (const char *file)
3037 DWORD attributes = GetFileAttributes (file);
3039 if (attributes != INVALID_FILE_ATTRIBUTES && GetLastError() != ERROR_PATH_NOT_FOUND)
3046 * A wrapper around strerror() because some platforms
3047 * may be lame and not have strerror().
3049 * @param error_number errno.
3050 * @returns error description.
3053 _dbus_strerror (int error_number)
3061 switch (error_number)
3064 return "Interrupted function call";
3066 return "Permission denied";
3068 return "Bad address";
3070 return "Invalid argument";
3072 return "Too many open files";
3073 case WSAEWOULDBLOCK:
3074 return "Resource temporarily unavailable";
3075 case WSAEINPROGRESS:
3076 return "Operation now in progress";
3078 return "Operation already in progress";
3080 return "Socket operation on nonsocket";
3081 case WSAEDESTADDRREQ:
3082 return "Destination address required";
3084 return "Message too long";
3086 return "Protocol wrong type for socket";
3087 case WSAENOPROTOOPT:
3088 return "Bad protocol option";
3089 case WSAEPROTONOSUPPORT:
3090 return "Protocol not supported";
3091 case WSAESOCKTNOSUPPORT:
3092 return "Socket type not supported";
3094 return "Operation not supported";
3095 case WSAEPFNOSUPPORT:
3096 return "Protocol family not supported";
3097 case WSAEAFNOSUPPORT:
3098 return "Address family not supported by protocol family";
3100 return "Address already in use";
3101 case WSAEADDRNOTAVAIL:
3102 return "Cannot assign requested address";
3104 return "Network is down";
3105 case WSAENETUNREACH:
3106 return "Network is unreachable";
3108 return "Network dropped connection on reset";
3109 case WSAECONNABORTED:
3110 return "Software caused connection abort";
3112 return "Connection reset by peer";
3114 return "No buffer space available";
3116 return "Socket is already connected";
3118 return "Socket is not connected";
3120 return "Cannot send after socket shutdown";
3122 return "Connection timed out";
3123 case WSAECONNREFUSED:
3124 return "Connection refused";
3126 return "Host is down";
3127 case WSAEHOSTUNREACH:
3128 return "No route to host";
3130 return "Too many processes";
3132 return "Graceful shutdown in progress";
3133 case WSATYPE_NOT_FOUND:
3134 return "Class type not found";
3135 case WSAHOST_NOT_FOUND:
3136 return "Host not found";
3138 return "Nonauthoritative host not found";
3139 case WSANO_RECOVERY:
3140 return "This is a nonrecoverable error";
3142 return "Valid name, no data record of requested type";
3143 case WSA_INVALID_HANDLE:
3144 return "Specified event object handle is invalid";
3145 case WSA_INVALID_PARAMETER:
3146 return "One or more parameters are invalid";
3147 case WSA_IO_INCOMPLETE:
3148 return "Overlapped I/O event object not in signaled state";
3149 case WSA_IO_PENDING:
3150 return "Overlapped operations will complete later";
3151 case WSA_NOT_ENOUGH_MEMORY:
3152 return "Insufficient memory available";
3153 case WSA_OPERATION_ABORTED:
3154 return "Overlapped operation aborted";
3155 #ifdef WSAINVALIDPROCTABLE
3157 case WSAINVALIDPROCTABLE:
3158 return "Invalid procedure table from service provider";
3160 #ifdef WSAINVALIDPROVIDER
3162 case WSAINVALIDPROVIDER:
3163 return "Invalid service provider version number";
3165 #ifdef WSAPROVIDERFAILEDINIT
3167 case WSAPROVIDERFAILEDINIT:
3168 return "Unable to initialize a service provider";
3171 case WSASYSCALLFAILURE:
3172 return "System call failure";
3174 msg = strerror (error_number);
3183 * Assigns an error name and message corresponding to a Win32 error
3184 * code to a DBusError. Does nothing if error is #NULL.
3186 * @param error the error.
3187 * @param code the Win32 error code
3190 _dbus_win_set_error_from_win_error (DBusError *error,
3195 /* As we want the English message, use the A API */
3196 FormatMessageA (FORMAT_MESSAGE_ALLOCATE_BUFFER |
3197 FORMAT_MESSAGE_IGNORE_INSERTS |
3198 FORMAT_MESSAGE_FROM_SYSTEM,
3199 NULL, code, MAKELANGID (LANG_ENGLISH, SUBLANG_ENGLISH_US),
3200 (LPTSTR) &msg, 0, NULL);
3205 msg_copy = dbus_malloc (strlen (msg));
3206 strcpy (msg_copy, msg);
3209 dbus_set_error (error, "win32.error", "%s", msg_copy);
3212 dbus_set_error (error, "win32.error", "Unknown error code %d or FormatMessage failed", code);
3216 _dbus_win_warn_win_error (const char *message,
3221 dbus_error_init (&error);
3222 _dbus_win_set_error_from_win_error (&error, code);
3223 _dbus_warn ("%s: %s\n", message, error.message);
3224 dbus_error_free (&error);
3228 * Removes a directory; Directory must be empty
3230 * @param filename directory filename
3231 * @param error initialized error object
3232 * @returns #TRUE on success
3235 _dbus_delete_directory (const DBusString *filename,
3238 const char *filename_c;
3240 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3242 filename_c = _dbus_string_get_const_data (filename);
3244 if (_rmdir (filename_c) != 0)
3246 dbus_set_error (error, DBUS_ERROR_FAILED,
3247 "Failed to remove directory %s: %s\n",
3248 filename_c, strerror (errno));
3255 /** @} end of sysdeps-win */
3256 /* tests in dbus-sysdeps-util.c */