31 #define STRSAFE_NO_DEPRECATE 35 #define _WIN32_WINNT 0x0501 39 #include "dbus-internals.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" 59 extern BOOL WINAPI ConvertStringSidToSidA (LPCSTR StringSid, PSID *Sid);
60 extern BOOL WINAPI ConvertSidToStringSidA (PSID Sid, LPSTR *StringSid);
72 #include <sys/types.h> 75 #ifdef HAVE_WS2TCPIP_H 84 #ifndef PROCESS_QUERY_LIMITED_INFORMATION 86 #define PROCESS_QUERY_LIMITED_INFORMATION (0x1000) 89 typedef int socklen_t;
93 _dbus_win_set_errno (
int err)
102 static BOOL is_winxp_sp3_or_lower (
void);
108 typedef MIB_TCPROW_OWNER_PID _MIB_TCPROW_EX;
109 typedef MIB_TCPTABLE_OWNER_PID MIB_TCPTABLE_EX;
110 typedef PMIB_TCPTABLE_OWNER_PID PMIB_TCPTABLE_EX;
111 typedef DWORD (WINAPI *ProcAllocateAndGetTcpExtTableFromStack)(PMIB_TCPTABLE_EX*,BOOL,HANDLE,DWORD,DWORD);
112 static ProcAllocateAndGetTcpExtTableFromStack lpfnAllocateAndGetTcpExTableFromStack =
NULL;
120 load_ex_ip_helper_procedures(
void)
122 HMODULE hModule = LoadLibrary (
"iphlpapi.dll");
125 _dbus_verbose (
"could not load iphlpapi.dll\n");
129 lpfnAllocateAndGetTcpExTableFromStack = (ProcAllocateAndGetTcpExtTableFromStack)GetProcAddress (hModule,
"AllocateAndGetTcpExTableFromStack");
130 if (lpfnAllocateAndGetTcpExTableFromStack ==
NULL)
132 _dbus_verbose (
"could not find function AllocateAndGetTcpExTableFromStack in iphlpapi.dll\n");
145 get_pid_from_extended_tcp_table(
int peer_port)
148 DWORD errorCode, size = 0, i;
149 MIB_TCPTABLE_OWNER_PID *tcp_table;
152 GetExtendedTcpTable (
NULL, &size,
TRUE, AF_INET, TCP_TABLE_OWNER_PID_ALL, 0)) == ERROR_INSUFFICIENT_BUFFER)
154 tcp_table = (MIB_TCPTABLE_OWNER_PID *)
dbus_malloc (size);
155 if (tcp_table ==
NULL)
157 _dbus_verbose (
"Error allocating memory\n");
163 _dbus_win_warn_win_error (
"unexpected error returned from GetExtendedTcpTable", errorCode);
167 if ((errorCode = GetExtendedTcpTable (tcp_table, &size,
TRUE, AF_INET, TCP_TABLE_OWNER_PID_ALL, 0)) != NO_ERROR)
169 _dbus_verbose (
"Error fetching tcp table %d\n", (
int)errorCode);
175 for (i = 0; i < tcp_table->dwNumEntries; i++)
177 MIB_TCPROW_OWNER_PID *p = &tcp_table->table[i];
178 int local_address = ntohl (p->dwLocalAddr);
179 int local_port = ntohs (p->dwLocalPort);
180 if (p->dwState == MIB_TCP_STATE_ESTAB
181 && local_address == INADDR_LOOPBACK && local_port == peer_port)
182 result = p->dwOwningPid;
186 _dbus_verbose (
"got pid %lu\n", result);
198 get_pid_from_tcp_ex_table(
int peer_port)
202 PMIB_TCPTABLE_EX tcp_table =
NULL;
204 if (!load_ex_ip_helper_procedures ())
207 (
"Error not been able to load iphelper procedures\n");
211 errorCode = lpfnAllocateAndGetTcpExTableFromStack (&tcp_table,
TRUE, GetProcessHeap(), 0, 2);
213 if (errorCode != NO_ERROR)
216 (
"Error not been able to call AllocateAndGetTcpExTableFromStack()\n");
221 for (i = 0; i < tcp_table->dwNumEntries; i++)
223 _MIB_TCPROW_EX *p = &tcp_table->table[i];
224 int local_port = ntohs (p->dwLocalPort);
225 int local_address = ntohl (p->dwLocalAddr);
226 if (local_address == INADDR_LOOPBACK && local_port == peer_port)
228 result = p->dwOwningPid;
233 HeapFree (GetProcessHeap(), 0, tcp_table);
234 _dbus_verbose (
"got pid %lu\n", result);
244 _dbus_get_peer_pid_from_tcp_handle (
int handle)
246 struct sockaddr_storage addr;
247 socklen_t len =
sizeof (addr);
253 getpeername (handle, (
struct sockaddr *) &addr, &len);
255 if (addr.ss_family == AF_INET)
257 struct sockaddr_in *s = (
struct sockaddr_in *) &addr;
258 peer_port = ntohs (s->sin_port);
259 is_localhost = (ntohl (s->sin_addr.s_addr) == INADDR_LOOPBACK);
261 else if (addr.ss_family == AF_INET6)
263 _dbus_verbose (
"FIXME [61922]: IPV6 support not working on windows\n");
274 _dbus_verbose (
"no idea what address family %d is\n", addr.ss_family);
280 _dbus_verbose (
"could not fetch process id from remote process\n");
287 (
"Error not been able to fetch tcp peer port from connection\n");
291 _dbus_verbose (
"trying to get peer's pid\n");
293 result = get_pid_from_extended_tcp_table (peer_port);
296 result = get_pid_from_tcp_ex_table (peer_port);
302 _dbus_win_error_from_last_error (
void)
304 switch (GetLastError())
309 case ERROR_NO_MORE_FILES:
310 case ERROR_TOO_MANY_OPEN_FILES:
313 case ERROR_ACCESS_DENIED:
314 case ERROR_CANNOT_MAKE:
317 case ERROR_NOT_ENOUGH_MEMORY:
320 case ERROR_FILE_EXISTS:
323 case ERROR_FILE_NOT_FOUND:
324 case ERROR_PATH_NOT_FOUND:
333 _dbus_win_error_string (
int error_number)
337 FormatMessageA (FORMAT_MESSAGE_ALLOCATE_BUFFER |
338 FORMAT_MESSAGE_IGNORE_INSERTS |
339 FORMAT_MESSAGE_FROM_SYSTEM,
340 NULL, error_number, 0,
341 (LPSTR) &msg, 0,
NULL);
343 if (msg[strlen (msg) - 1] ==
'\n')
344 msg[strlen (msg) - 1] =
'\0';
345 if (msg[strlen (msg) - 1] ==
'\r')
346 msg[strlen (msg) - 1] =
'\0';
352 _dbus_win_free_error_string (
char *
string)
388 start = _dbus_string_get_length (buffer);
392 _dbus_win_set_errno (ENOMEM);
400 _dbus_verbose (
"recv: count=%d fd=%Iu\n", count, fd.sock);
401 bytes_read = recv (fd.sock, data, count, 0);
403 if (bytes_read == SOCKET_ERROR)
405 DBUS_SOCKET_SET_ERRNO();
406 _dbus_verbose (
"recv: failed: %s (%d)\n", _dbus_strerror (errno), errno);
410 _dbus_verbose (
"recv: = %d\n", bytes_read);
456 data = _dbus_string_get_const_data_len (buffer, start, len);
460 _dbus_verbose (
"send: len=%d fd=%Iu\n", len, fd.sock);
461 bytes_written = send (fd.sock, data, len, 0);
463 if (bytes_written == SOCKET_ERROR)
465 DBUS_SOCKET_SET_ERRNO();
470 _dbus_verbose (
"send: = %d\n", bytes_written);
472 if (bytes_written < 0 && errno == EINTR)
476 if (bytes_written > 0)
480 return bytes_written;
495 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
498 if (closesocket (fd.sock) == SOCKET_ERROR)
500 DBUS_SOCKET_SET_ERRNO ();
506 "Could not close socket: socket=%Iu, , %s",
510 _dbus_verbose (
"socket=%Iu, \n", fd.sock);
523 _dbus_win_handle_set_close_on_exec (HANDLE handle)
525 if ( !SetHandleInformation( (HANDLE) handle,
526 HANDLE_FLAG_INHERIT | HANDLE_FLAG_PROTECT_FROM_CLOSE,
529 _dbus_win_warn_win_error (
"Disabling socket handle inheritance failed:", GetLastError());
546 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
548 if (ioctlsocket (handle.sock, FIONBIO, &one) == SOCKET_ERROR)
550 DBUS_SOCKET_SET_ERRNO ();
552 "Failed to set socket %Iu to nonblocking: %s",
603 data1 = _dbus_string_get_const_data_len (buffer1, start1, len1);
606 data2 = _dbus_string_get_const_data_len (buffer2, start2, len2);
614 vectors[0].buf = (
char*) data1;
615 vectors[0].len = len1;
616 vectors[1].buf = (
char*) data2;
617 vectors[1].len = len2;
621 _dbus_verbose (
"WSASend: len1+2=%d+%d fd=%Iu\n", len1, len2, fd.sock);
622 rc = WSASend (fd.sock,
630 if (rc == SOCKET_ERROR)
632 DBUS_SOCKET_SET_ERRNO ();
634 bytes_written = (DWORD) -1;
637 _dbus_verbose (
"WSASend: = %ld\n", bytes_written);
639 if (bytes_written == (DWORD) -1 && errno == EINTR)
642 return bytes_written;
656 _dbus_connect_named_pipe (
const char *path,
668 _dbus_win_startup_winsock (
void)
675 WORD wVersionRequested;
685 wVersionRequested = MAKEWORD (2, 0);
687 err = WSAStartup (wVersionRequested, &wsaData);
699 if (LOBYTE (wsaData.wVersion) != 2 ||
700 HIBYTE (wsaData.wVersion) != 0)
739 bufsize =
sizeof (buf);
740 DBUS_VA_COPY (args_copy, args);
741 len = _vsnprintf (buf, bufsize - 1, format, args_copy);
750 p = malloc (bufsize);
755 DBUS_VA_COPY (args_copy, args);
756 len = _vsnprintf (p, bufsize - 1, format, args_copy);
773 _dbus_win_utf8_to_utf16 (
const char *str,
788 n = MultiByteToWideChar (CP_UTF8, 0, str, -1,
NULL, 0);
792 _dbus_win_set_error_from_win_error (error, GetLastError ());
800 _DBUS_SET_OOM (error);
804 if (MultiByteToWideChar (CP_UTF8, 0, str, -1, retval, n) != n)
822 _dbus_win_utf16_to_utf8 (
const wchar_t *str,
828 n = WideCharToMultiByte (CP_UTF8, 0, str, -1,
NULL, 0,
NULL,
NULL);
832 _dbus_win_set_error_from_win_error (error, GetLastError ());
840 _DBUS_SET_OOM (error);
844 if (WideCharToMultiByte (CP_UTF8, 0, str, -1, retval, n,
NULL,
NULL) != n)
865 _dbus_win_account_to_sid (
const wchar_t *waccount,
870 DWORD sid_length, wdomain_length;
878 if (!LookupAccountNameW (
NULL, waccount,
NULL, &sid_length,
879 NULL, &wdomain_length, &use) &&
880 GetLastError () != ERROR_INSUFFICIENT_BUFFER)
882 _dbus_win_set_error_from_win_error (error, GetLastError ());
889 _DBUS_SET_OOM (error);
893 wdomain =
dbus_new (
wchar_t, wdomain_length);
896 _DBUS_SET_OOM (error);
900 if (!LookupAccountNameW (
NULL, waccount, (PSID) *ppsid, &sid_length,
901 wdomain, &wdomain_length, &use))
903 _dbus_win_set_error_from_win_error (error, GetLastError ());
907 if (!IsValidSid ((PSID) *ppsid))
945 is_winxp_sp3_or_lower (
void)
947 OSVERSIONINFOEX osvi;
948 DWORDLONG dwlConditionMask = 0;
949 int op=VER_LESS_EQUAL;
953 ZeroMemory(&osvi,
sizeof(OSVERSIONINFOEX));
954 osvi.dwOSVersionInfoSize =
sizeof(OSVERSIONINFOEX);
955 osvi.dwMajorVersion = 5;
956 osvi.dwMinorVersion = 1;
957 osvi.wServicePackMajor = 3;
958 osvi.wServicePackMinor = 0;
962 VER_SET_CONDITION( dwlConditionMask, VER_MAJORVERSION, op );
963 VER_SET_CONDITION( dwlConditionMask, VER_MINORVERSION, op );
964 VER_SET_CONDITION( dwlConditionMask, VER_SERVICEPACKMAJOR, op );
965 VER_SET_CONDITION( dwlConditionMask, VER_SERVICEPACKMINOR, op );
969 return VerifyVersionInfo(
971 VER_MAJORVERSION | VER_MINORVERSION |
972 VER_SERVICEPACKMAJOR | VER_SERVICEPACKMINOR,
982 _dbus_getsid(
char **sid,
dbus_pid_t process_id)
984 HANDLE process_token = INVALID_HANDLE_VALUE;
985 TOKEN_USER *token_user =
NULL;
990 HANDLE process_handle;
992 process_handle = GetCurrentProcess();
993 else if (is_winxp_sp3_or_lower())
994 process_handle = OpenProcess(PROCESS_QUERY_INFORMATION,
FALSE, process_id);
996 process_handle = OpenProcess(PROCESS_QUERY_LIMITED_INFORMATION,
FALSE, process_id);
998 if (!OpenProcessToken (process_handle, TOKEN_QUERY, &process_token))
1000 _dbus_win_warn_win_error (
"OpenProcessToken failed", GetLastError ());
1003 if ((!GetTokenInformation (process_token, TokenUser,
NULL, 0, &n)
1004 && GetLastError () != ERROR_INSUFFICIENT_BUFFER)
1005 || (token_user = alloca (n)) ==
NULL 1006 || !GetTokenInformation (process_token, TokenUser, token_user, n, &n))
1008 _dbus_win_warn_win_error (
"GetTokenInformation failed", GetLastError ());
1011 psid = token_user->User.Sid;
1012 if (!IsValidSid (psid))
1014 _dbus_verbose(
"%s invalid sid\n",__FUNCTION__);
1017 if (!ConvertSidToStringSidA (psid, sid))
1019 _dbus_verbose(
"%s invalid sid\n",__FUNCTION__);
1026 CloseHandle (process_handle);
1027 if (process_token != INVALID_HANDLE_VALUE)
1028 CloseHandle (process_token);
1030 _dbus_verbose(
"_dbus_getsid() got '%s' and returns %d\n", *sid, retval);
1059 SOCKET temp, socket1 = -1, socket2 = -1;
1060 struct sockaddr_in saddr;
1064 if (!_dbus_win_startup_winsock ())
1066 _DBUS_SET_OOM (error);
1070 temp = socket (AF_INET, SOCK_STREAM, 0);
1071 if (temp == INVALID_SOCKET)
1073 DBUS_SOCKET_SET_ERRNO ();
1078 saddr.sin_family = AF_INET;
1080 saddr.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
1082 if (bind (temp, (
struct sockaddr *)&saddr,
sizeof (saddr)) == SOCKET_ERROR)
1084 DBUS_SOCKET_SET_ERRNO ();
1088 if (listen (temp, 1) == SOCKET_ERROR)
1090 DBUS_SOCKET_SET_ERRNO ();
1094 len =
sizeof (saddr);
1095 if (getsockname (temp, (
struct sockaddr *)&saddr, &len) == SOCKET_ERROR)
1097 DBUS_SOCKET_SET_ERRNO ();
1101 socket1 = socket (AF_INET, SOCK_STREAM, 0);
1102 if (socket1 == INVALID_SOCKET)
1104 DBUS_SOCKET_SET_ERRNO ();
1108 if (connect (socket1, (
struct sockaddr *)&saddr, len) == SOCKET_ERROR)
1110 DBUS_SOCKET_SET_ERRNO ();
1114 socket2 = accept (temp, (
struct sockaddr *) &saddr, &len);
1115 if (socket2 == INVALID_SOCKET)
1117 DBUS_SOCKET_SET_ERRNO ();
1124 if (ioctlsocket (socket1, FIONBIO, &arg) == SOCKET_ERROR)
1126 DBUS_SOCKET_SET_ERRNO ();
1131 if (ioctlsocket (socket2, FIONBIO, &arg) == SOCKET_ERROR)
1133 DBUS_SOCKET_SET_ERRNO ();
1138 fd1->sock = socket1;
1139 fd2->sock = socket2;
1141 _dbus_verbose (
"full-duplex pipe %Iu:%Iu <-> %Iu:%Iu\n",
1142 fd1->sock, socket1, fd2->sock, socket2);
1149 closesocket (socket2);
1151 closesocket (socket1);
1156 "Could not setup socket pair: %s",
1173 int timeout_milliseconds)
1175 #define USE_CHRIS_IMPL 0 1179 #define DBUS_POLL_CHAR_BUFFER_SIZE 2000 1180 char msg[DBUS_POLL_CHAR_BUFFER_SIZE];
1188 #define DBUS_STACK_WSAEVENTS 256 1189 WSAEVENT eventsOnStack[DBUS_STACK_WSAEVENTS];
1190 WSAEVENT *pEvents =
NULL;
1191 if (n_fds > DBUS_STACK_WSAEVENTS)
1192 pEvents = calloc(
sizeof(WSAEVENT), n_fds);
1194 pEvents = eventsOnStack;
1197 #ifdef DBUS_ENABLE_VERBOSE_MODE 1199 msgp += sprintf (msgp,
"WSAEventSelect: to=%d\n\t", timeout_milliseconds);
1200 for (i = 0; i < n_fds; i++)
1206 msgp += sprintf (msgp,
"R:%Iu ", fdp->
fd.sock);
1209 msgp += sprintf (msgp,
"W:%Iu ", fdp->
fd.sock);
1211 msgp += sprintf (msgp,
"E:%Iu\n\t", fdp->
fd.sock);
1215 if (msgp >= msg + DBUS_POLL_CHAR_BUFFER_SIZE)
1221 msgp += sprintf (msgp,
"\n");
1222 _dbus_verbose (
"%s",msg);
1224 for (i = 0; i < n_fds; i++)
1228 long lNetworkEvents = FD_OOB;
1230 ev = WSACreateEvent();
1233 lNetworkEvents |= FD_READ | FD_ACCEPT | FD_CLOSE;
1236 lNetworkEvents |= FD_WRITE | FD_CONNECT;
1238 WSAEventSelect(fdp->
fd.sock, ev, lNetworkEvents);
1244 ready = WSAWaitForMultipleEvents (n_fds, pEvents,
FALSE, timeout_milliseconds,
FALSE);
1246 if (DBUS_SOCKET_API_RETURNS_ERROR (ready))
1248 DBUS_SOCKET_SET_ERRNO ();
1249 if (errno != WSAEWOULDBLOCK)
1253 else if (ready == WSA_WAIT_TIMEOUT)
1255 _dbus_verbose (
"WSAWaitForMultipleEvents: WSA_WAIT_TIMEOUT\n");
1258 else if (ready >= WSA_WAIT_EVENT_0 && ready < (
int)(WSA_WAIT_EVENT_0 + n_fds))
1261 msgp += sprintf (msgp,
"WSAWaitForMultipleEvents: =%d\n\t", ready);
1263 for (i = 0; i < n_fds; i++)
1266 WSANETWORKEVENTS ne;
1270 WSAEnumNetworkEvents(fdp->
fd.sock, pEvents[i], &ne);
1272 if (ne.lNetworkEvents & (FD_READ | FD_ACCEPT | FD_CLOSE))
1275 if (ne.lNetworkEvents & (FD_WRITE | FD_CONNECT))
1278 if (ne.lNetworkEvents & (FD_OOB))
1281 if (ne.lNetworkEvents & (FD_READ | FD_ACCEPT | FD_CLOSE))
1282 msgp += sprintf (msgp,
"R:%Iu ", fdp->
fd.sock);
1284 if (ne.lNetworkEvents & (FD_WRITE | FD_CONNECT))
1285 msgp += sprintf (msgp,
"W:%Iu ", fdp->
fd.sock);
1287 if (ne.lNetworkEvents & (FD_OOB))
1288 msgp += sprintf (msgp,
"E:%Iu ", fdp->
fd.sock);
1290 msgp += sprintf (msgp,
"lNetworkEvents:%d ", ne.lNetworkEvents);
1292 if(ne.lNetworkEvents)
1295 WSAEventSelect(fdp->
fd.sock, pEvents[i], 0);
1298 msgp += sprintf (msgp,
"\n");
1299 _dbus_verbose (
"%s",msg);
1303 _dbus_verbose (
"WSAWaitForMultipleEvents: failed for unknown reason!");
1307 for(i = 0; i < n_fds; i++)
1309 WSACloseEvent(pEvents[i]);
1312 if (n_fds > DBUS_STACK_WSAEVENTS)
1319 #ifdef DBUS_ENABLE_VERBOSE_MODE 1320 #define DBUS_POLL_CHAR_BUFFER_SIZE 2000 1321 char msg[DBUS_POLL_CHAR_BUFFER_SIZE];
1325 fd_set read_set, write_set, err_set;
1331 FD_ZERO (&read_set);
1332 FD_ZERO (&write_set);
1336 #ifdef DBUS_ENABLE_VERBOSE_MODE 1338 msgp += sprintf (msgp,
"select: to=%d\n\t", timeout_milliseconds);
1339 for (i = 0; i < n_fds; i++)
1345 msgp += sprintf (msgp,
"R:%Iu ", fdp->
fd.sock);
1348 msgp += sprintf (msgp,
"W:%Iu ", fdp->
fd.sock);
1350 msgp += sprintf (msgp,
"E:%Iu\n\t", fdp->
fd.sock);
1354 if (msgp >= msg + DBUS_POLL_CHAR_BUFFER_SIZE)
1360 msgp += sprintf (msgp,
"\n");
1361 _dbus_verbose (
"%s",msg);
1363 for (i = 0; i < n_fds; i++)
1368 FD_SET (fdp->
fd.sock, &read_set);
1371 FD_SET (fdp->
fd.sock, &write_set);
1373 FD_SET (fdp->
fd.sock, &err_set);
1375 max_fd = MAX (max_fd, fdp->
fd.sock);
1379 tv.tv_sec = timeout_milliseconds < 0 ? 1 : timeout_milliseconds / 1000;
1380 tv.tv_usec = timeout_milliseconds < 0 ? 0 : (timeout_milliseconds % 1000) * 1000;
1382 ready = select (max_fd + 1, &read_set, &write_set, &err_set, &tv);
1384 if (DBUS_SOCKET_API_RETURNS_ERROR (ready))
1386 DBUS_SOCKET_SET_ERRNO ();
1387 if (errno != WSAEWOULDBLOCK)
1390 else if (ready == 0)
1391 _dbus_verbose (
"select: = 0\n");
1395 #ifdef DBUS_ENABLE_VERBOSE_MODE 1397 msgp += sprintf (msgp,
"select: = %d:\n\t", ready);
1399 for (i = 0; i < n_fds; i++)
1403 if (FD_ISSET (fdp->
fd.sock, &read_set))
1404 msgp += sprintf (msgp,
"R:%Iu ", fdp->
fd.sock);
1406 if (FD_ISSET (fdp->
fd.sock, &write_set))
1407 msgp += sprintf (msgp,
"W:%Iu ", fdp->
fd.sock);
1409 if (FD_ISSET (fdp->
fd.sock, &err_set))
1410 msgp += sprintf (msgp,
"E:%Iu\n\t", fdp->
fd.sock);
1412 msgp += sprintf (msgp,
"\n");
1413 _dbus_verbose (
"%s",msg);
1416 for (i = 0; i < n_fds; i++)
1422 if (FD_ISSET (fdp->
fd.sock, &read_set))
1425 if (FD_ISSET (fdp->
fd.sock, &write_set))
1428 if (FD_ISSET (fdp->
fd.sock, &err_set))
1498 return _dbus_connect_tcp_socket_with_nonce (host, port, family, (
const char*)
NULL, error);
1502 _dbus_connect_tcp_socket_with_nonce (
const char *host,
1505 const char *noncefile,
1510 struct addrinfo hints;
1511 struct addrinfo *ai, *tmp;
1513 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1515 if (!_dbus_win_startup_winsock ())
1517 _DBUS_SET_OOM (error);
1518 return _dbus_socket_get_invalid ();
1524 hints.ai_family = AF_UNSPEC;
1525 else if (!strcmp(family,
"ipv4"))
1526 hints.ai_family = AF_INET;
1527 else if (!strcmp(family,
"ipv6"))
1528 hints.ai_family = AF_INET6;
1533 "Unknown address family %s", family);
1534 return _dbus_socket_get_invalid ();
1536 hints.ai_protocol = IPPROTO_TCP;
1537 hints.ai_socktype = SOCK_STREAM;
1538 #ifdef AI_ADDRCONFIG 1539 hints.ai_flags = AI_ADDRCONFIG;
1544 if ((res = getaddrinfo(host, port, &hints, &ai)) != 0 || !ai)
1548 "Failed to lookup host/port: \"%s:%s\": %s (%d)",
1549 host, port, _dbus_strerror(res), res);
1550 return _dbus_socket_get_invalid ();
1556 if ((fd.sock = socket (tmp->ai_family, SOCK_STREAM, 0)) == INVALID_SOCKET)
1558 DBUS_SOCKET_SET_ERRNO ();
1561 "Failed to open socket: %s",
1564 return _dbus_socket_get_invalid ();
1566 _DBUS_ASSERT_ERROR_IS_CLEAR(error);
1568 if (connect (fd.sock, (
struct sockaddr*) tmp->ai_addr, tmp->ai_addrlen) == SOCKET_ERROR)
1570 DBUS_SOCKET_SET_ERRNO ();
1571 closesocket(fd.sock);
1572 fd.sock = INVALID_SOCKET;
1581 if (!_dbus_socket_is_valid (fd))
1585 "Failed to connect to socket \"%s:%s\" %s",
1587 return _dbus_socket_get_invalid ();
1590 if (noncefile !=
NULL)
1597 closesocket (fd.sock);
1599 return _dbus_socket_get_invalid ();
1602 ret = _dbus_send_nonce (fd, &noncefileStr, error);
1608 closesocket (fd.sock);
1609 return _dbus_socket_get_invalid ();
1614 _dbus_win_handle_set_close_on_exec ((HANDLE) fd.sock);
1618 closesocket (fd.sock);
1619 return _dbus_socket_get_invalid ();
1649 int nlisten_fd = 0, res, i, port_num = -1;
1650 struct addrinfo hints;
1651 struct addrinfo *ai, *tmp;
1658 struct sockaddr Address;
1659 struct sockaddr_in AddressIn;
1660 struct sockaddr_in6 AddressIn6;
1664 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1666 if (!_dbus_win_startup_winsock ())
1668 _DBUS_SET_OOM (error);
1675 hints.ai_family = AF_INET;
1676 else if (!strcmp(family,
"ipv4"))
1677 hints.ai_family = AF_INET;
1678 else if (!strcmp(family,
"ipv6"))
1679 hints.ai_family = AF_INET6;
1684 "Unknown address family %s", family);
1688 hints.ai_protocol = IPPROTO_TCP;
1689 hints.ai_socktype = SOCK_STREAM;
1690 #ifdef AI_ADDRCONFIG 1691 hints.ai_flags = AI_ADDRCONFIG | AI_PASSIVE;
1693 hints.ai_flags = AI_PASSIVE;
1696 redo_lookup_with_port:
1697 if ((res = getaddrinfo(host, port, &hints, &ai)) != 0 || !ai)
1701 "Failed to lookup host/port: \"%s:%s\": %s (%d)",
1702 host ? host :
"*", port, _dbus_strerror(res), res);
1709 DBusSocket fd = DBUS_SOCKET_INIT, *newlisten_fd;
1710 if ((fd.sock = socket (tmp->ai_family, SOCK_STREAM, 0)) == INVALID_SOCKET)
1712 DBUS_SOCKET_SET_ERRNO ();
1715 "Failed to open socket: %s",
1719 _DBUS_ASSERT_ERROR_IS_CLEAR(error);
1721 if (bind (fd.sock, (
struct sockaddr*) tmp->ai_addr, tmp->ai_addrlen) == SOCKET_ERROR)
1723 DBUS_SOCKET_SET_ERRNO ();
1724 closesocket (fd.sock);
1725 if (errno == WSAEADDRINUSE)
1735 "Failed to bind socket \"%s:%s\": %s",
1740 if (listen (fd.sock, 30 ) == SOCKET_ERROR)
1742 DBUS_SOCKET_SET_ERRNO ();
1744 "Failed to listen on socket \"%s:%s\": %s",
1746 closesocket (fd.sock);
1753 closesocket (fd.sock);
1755 "Failed to allocate file handle array");
1758 listen_fd = newlisten_fd;
1759 listen_fd[nlisten_fd] = fd;
1762 if (!_dbus_string_get_length(retport))
1768 if (!port || !strcmp(port,
"0"))
1770 mysockaddr_gen addr;
1771 socklen_t addrlen =
sizeof(addr);
1772 char portbuf[NI_MAXSERV];
1774 if (getsockname(fd.sock, &addr.Address, &addrlen) == SOCKET_ERROR ||
1775 (res = getnameinfo (&addr.Address, addrlen,
NULL, 0,
1776 portbuf,
sizeof(portbuf),
1777 NI_NUMERICSERV)) != 0)
1779 DBUS_SOCKET_SET_ERRNO ();
1781 "Failed to resolve port \"%s:%s\": %s",
1792 port = _dbus_string_get_const_data(retport);
1794 goto redo_lookup_with_port;
1813 _dbus_win_set_errno (WSAEADDRINUSE);
1815 "Failed to bind socket \"%s:%s\": %s",
1820 sscanf(_dbus_string_get_const_data(retport),
"%d", &port_num);
1822 for (i = 0 ; i < nlisten_fd ; i++)
1824 _dbus_win_handle_set_close_on_exec ((HANDLE) listen_fd[i].sock);
1838 for (i = 0 ; i < nlisten_fd ; i++)
1839 closesocket (listen_fd[i].sock);
1858 client_fd.sock = accept (listen_fd.sock,
NULL,
NULL);
1860 if (!_dbus_socket_is_valid (client_fd))
1862 DBUS_SOCKET_SET_ERRNO ();
1867 _dbus_verbose (
"client fd %Iu accepted\n", client_fd.sock);
1909 if (bytes_written < 0 && errno == EINTR)
1912 if (bytes_written < 0)
1915 "Failed to write credentials byte: %s",
1919 else if (bytes_written == 0)
1922 "wrote zero bytes writing credentials byte");
1928 _dbus_verbose (
"wrote 1 zero byte, credential sending isn't implemented yet\n");
1970 _dbus_verbose (
"got one zero byte from server\n");
1975 pid = _dbus_get_peer_pid_from_tcp_handle (handle.sock);
1981 if (_dbus_getsid (&sid, pid))
2008 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2030 if (_dbus_string_get_length (dir) == 0 ||
2031 _dbus_string_get_length (next_component) == 0)
2035 (
'/' == _dbus_string_get_byte (dir, _dbus_string_get_length (dir) - 1) ||
2036 '\\' == _dbus_string_get_byte (dir, _dbus_string_get_length (dir) - 1));
2038 file_starts_with_slash =
2039 (
'/' == _dbus_string_get_byte (next_component, 0) ||
2040 '\\' == _dbus_string_get_byte (next_component, 0));
2042 if (dir_ends_in_slash && file_starts_with_slash)
2046 else if (!(dir_ends_in_slash || file_starts_with_slash))
2053 _dbus_string_get_length (dir));
2070 _dbus_string_get_const_data(username));
2141 return GetCurrentProcessId ();
2154 #define NANOSECONDS_PER_SECOND 1000000000 2156 #define MICROSECONDS_PER_SECOND 1000000 2158 #define MILLISECONDS_PER_SECOND 1000 2160 #define NANOSECONDS_PER_MILLISECOND 1000000 2162 #define MICROSECONDS_PER_MILLISECOND 1000 2171 Sleep (milliseconds);
2187 dbus_uint64_t time64;
2189 GetSystemTimeAsFileTime (&ft);
2191 memcpy (&time64, &ft,
sizeof (time64));
2196 time64 -= DBUS_INT64_CONSTANT (116444736000000000);
2200 *tv_sec = time64 / 1000000;
2203 *tv_usec = time64 % 1000000;
2241 const char *filename_c;
2243 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2245 filename_c = _dbus_string_get_const_data (filename);
2247 if (!CreateDirectoryA (filename_c,
NULL))
2249 if (GetLastError () == ERROR_ALREADY_EXISTS)
2253 "Failed to create directory %s: %s\n",
2280 old_len = _dbus_string_get_length (str);
2284 _DBUS_SET_OOM (error);
2288 p = _dbus_string_get_udata_len (str, old_len, n_bytes);
2290 if (!CryptAcquireContext (&hprov,
NULL,
NULL, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT))
2292 _DBUS_SET_OOM (error);
2296 if (!CryptGenRandom (hprov, n_bytes, p))
2298 _DBUS_SET_OOM (error);
2299 CryptReleaseContext (hprov, 0);
2303 CryptReleaseContext (hprov, 0);
2318 static const char* tmpdir =
NULL;
2319 static char buf[1000];
2326 unsigned char *last_slash;
2327 unsigned char *p = (
unsigned char *)buf;
2329 if (!GetTempPathA (
sizeof (buf), buf))
2336 last_slash = _mbsrchr (p,
'\\');
2337 if (last_slash > p && last_slash[1] ==
'\0')
2338 last_slash[0] =
'\0';
2339 last_slash = _mbsrchr (p,
'/');
2340 if (last_slash > p && last_slash[1] ==
'\0')
2341 last_slash[0] =
'\0';
2366 const char *filename_c;
2368 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2370 filename_c = _dbus_string_get_const_data (filename);
2372 if (DeleteFileA (filename_c) == 0)
2375 "Failed to delete file %s: %s\n",
2383 #if !defined (DBUS_DISABLE_ASSERT) || defined(DBUS_ENABLE_EMBEDDED_TESTS) 2385 #if defined(_MSC_VER) || defined(DBUS_WINCE) 2416 #include <imagehlp.h> 2419 #define DPRINTF(fmt, ...) fprintf (stderr, fmt, ##__VA_ARGS__) 2427 static void dump_backtrace_for_thread (HANDLE hThread)
2429 ADDRESS old_address;
2435 SymSetOptions (SYMOPT_UNDNAME | SYMOPT_LOAD_LINES);
2436 SymInitialize (GetCurrentProcess (),
NULL,
TRUE);
2441 if (hThread == GetCurrentThread())
2444 DPRINTF (
"Backtrace:\n");
2448 context.ContextFlags = CONTEXT_FULL;
2450 SuspendThread (hThread);
2452 if (!GetThreadContext (hThread, &context))
2454 DPRINTF (
"Couldn't get thread context (error %ld)\n", GetLastError ());
2455 ResumeThread (hThread);
2462 dwImageType = IMAGE_FILE_MACHINE_I386;
2463 sf.AddrFrame.Offset = context.Ebp;
2464 sf.AddrFrame.Mode = AddrModeFlat;
2465 sf.AddrPC.Offset = context.Eip;
2466 sf.AddrPC.Mode = AddrModeFlat;
2467 #elif defined(_M_X64) 2468 dwImageType = IMAGE_FILE_MACHINE_AMD64;
2469 sf.AddrPC.Offset = context.Rip;
2470 sf.AddrPC.Mode = AddrModeFlat;
2471 sf.AddrFrame.Offset = context.Rsp;
2472 sf.AddrFrame.Mode = AddrModeFlat;
2473 sf.AddrStack.Offset = context.Rsp;
2474 sf.AddrStack.Mode = AddrModeFlat;
2475 #elif defined(_M_IA64) 2476 dwImageType = IMAGE_FILE_MACHINE_IA64;
2477 sf.AddrPC.Offset = context.StIIP;
2478 sf.AddrPC.Mode = AddrModeFlat;
2479 sf.AddrFrame.Offset = context.IntSp;
2480 sf.AddrFrame.Mode = AddrModeFlat;
2481 sf.AddrBStore.Offset= context.RsBSP;
2482 sf.AddrBStore.Mode = AddrModeFlat;
2483 sf.AddrStack.Offset = context.IntSp;
2484 sf.AddrStack.Mode = AddrModeFlat;
2486 # error You need to fill in the STACKFRAME structure for your architecture 2495 while (StackWalk (dwImageType, GetCurrentProcess (),
2496 hThread, &sf, &context,
NULL, SymFunctionTableAccess,
2497 SymGetModuleBase,
NULL))
2499 char buffer[
sizeof(SYMBOL_INFO) + MAX_SYM_NAME *
sizeof(
char)];
2500 PSYMBOL_INFO pSymbol = (PSYMBOL_INFO)buffer;
2501 DWORD64 displacement;
2503 DWORD dwDisplacement;
2504 IMAGEHLP_MODULE moduleInfo;
2512 if (old_address.Offset == sf.AddrPC.Offset)
2518 pSymbol->SizeOfStruct =
sizeof(SYMBOL_INFO);
2519 pSymbol->MaxNameLen = MAX_SYM_NAME;
2521 if (SymFromAddr (GetCurrentProcess (), sf.AddrPC.Offset, &displacement, pSymbol))
2524 DPRINTF (
"%3d %s+0x%I64x", i++, pSymbol->Name, displacement);
2526 DPRINTF (
"%3d %s", i++, pSymbol->Name);
2529 DPRINTF (
"%3d 0x%lx", i++, sf.AddrPC.Offset);
2531 line.SizeOfStruct =
sizeof(IMAGEHLP_LINE);
2532 if (SymGetLineFromAddr (GetCurrentProcess (), sf.AddrPC.Offset, &dwDisplacement, &line))
2534 DPRINTF (
" [%s:%ld]", line.FileName, line.LineNumber);
2537 moduleInfo.SizeOfStruct =
sizeof(moduleInfo);
2538 if (SymGetModuleInfo (GetCurrentProcess (), sf.AddrPC.Offset, &moduleInfo))
2540 DPRINTF (
" in %s", moduleInfo.ModuleName);
2543 old_address = sf.AddrPC;
2545 ResumeThread (hThread);
2548 static DWORD WINAPI dump_thread_proc (LPVOID lpParameter)
2550 dump_backtrace_for_thread ((HANDLE) lpParameter);
2557 dump_backtrace (
void)
2559 HANDLE hCurrentThread;
2562 DuplicateHandle (GetCurrentProcess (), GetCurrentThread (),
2563 GetCurrentProcess (), &hCurrentThread,
2564 0,
FALSE, DUPLICATE_SAME_ACCESS);
2565 hThread = CreateThread (
NULL, 0, dump_thread_proc, (LPVOID)hCurrentThread,
2567 WaitForSingleObject (hThread, INFINITE);
2568 CloseHandle (hThread);
2569 CloseHandle (hCurrentThread);
2582 _dbus_verbose (
" D-Bus not compiled with backtrace support\n");
2586 static dbus_uint32_t fromAscii(
char ascii)
2588 if(ascii >=
'0' && ascii <=
'9')
2590 if(ascii >=
'A' && ascii <=
'F')
2591 return ascii -
'A' + 10;
2592 if(ascii >=
'a' && ascii <=
'f')
2593 return ascii -
'a' + 10;
2605 HW_PROFILE_INFOA info;
2606 char *lpc = &info.szHwProfileGuid[0];
2610 if(!GetCurrentHwProfileA(&info))
2619 u = ((fromAscii(lpc[0]) << 0) |
2620 (fromAscii(lpc[1]) << 4) |
2621 (fromAscii(lpc[2]) << 8) |
2622 (fromAscii(lpc[3]) << 12) |
2623 (fromAscii(lpc[4]) << 16) |
2624 (fromAscii(lpc[5]) << 20) |
2625 (fromAscii(lpc[6]) << 24) |
2626 (fromAscii(lpc[7]) << 28));
2631 u = ((fromAscii(lpc[0]) << 0) |
2632 (fromAscii(lpc[1]) << 4) |
2633 (fromAscii(lpc[2]) << 8) |
2634 (fromAscii(lpc[3]) << 12) |
2635 (fromAscii(lpc[5]) << 16) |
2636 (fromAscii(lpc[6]) << 20) |
2637 (fromAscii(lpc[7]) << 24) |
2638 (fromAscii(lpc[8]) << 28));
2643 u = ((fromAscii(lpc[0]) << 0) |
2644 (fromAscii(lpc[1]) << 4) |
2645 (fromAscii(lpc[2]) << 8) |
2646 (fromAscii(lpc[3]) << 12) |
2647 (fromAscii(lpc[5]) << 16) |
2648 (fromAscii(lpc[6]) << 20) |
2649 (fromAscii(lpc[7]) << 24) |
2650 (fromAscii(lpc[8]) << 28));
2655 u = ((fromAscii(lpc[0]) << 0) |
2656 (fromAscii(lpc[1]) << 4) |
2657 (fromAscii(lpc[2]) << 8) |
2658 (fromAscii(lpc[3]) << 12) |
2659 (fromAscii(lpc[4]) << 16) |
2660 (fromAscii(lpc[5]) << 20) |
2661 (fromAscii(lpc[6]) << 24) |
2662 (fromAscii(lpc[7]) << 28));
2669 HANDLE _dbus_global_lock (
const char *mutexname)
2674 mutex = CreateMutexA(
NULL,
FALSE, mutexname );
2680 gotMutex = WaitForSingleObject( mutex, INFINITE );
2683 case WAIT_ABANDONED:
2684 ReleaseMutex (mutex);
2685 CloseHandle (mutex);
2696 void _dbus_global_unlock (HANDLE mutex)
2698 ReleaseMutex (mutex);
2699 CloseHandle (mutex);
2703 static HANDLE hDBusDaemonMutex =
NULL;
2704 static HANDLE hDBusSharedMem =
NULL;
2706 static const char *cUniqueDBusInitMutex =
"UniqueDBusInitMutex";
2708 static const char *cDBusAutolaunchMutex =
"DBusAutolaunchMutex";
2710 static const char *cDBusDaemonMutex =
"DBusDaemonMutex";
2712 static const char *cDBusDaemonAddressInfo =
"DBusDaemonAddressInfo";
2715 _dbus_get_install_root_as_hash(
DBusString *out)
2721 if (!_dbus_get_install_root (&install_path) ||
2722 _dbus_string_get_length (&install_path) == 0)
2735 _dbus_get_address_string (
DBusString *out,
const char *basestring,
const char *scope)
2744 else if (strcmp(scope,
"*install-path") == 0
2746 || strcmp(scope,
"install-path") == 0)
2749 if (!_dbus_get_install_root_as_hash(&temp))
2758 else if (strcmp(scope,
"*user") == 0)
2767 else if (strlen(scope) > 0)
2777 _dbus_get_shm_name (
DBusString *out,
const char *scope)
2779 return _dbus_get_address_string (out,cDBusDaemonAddressInfo,scope);
2783 _dbus_get_mutex_name (
DBusString *out,
const char *scope)
2785 return _dbus_get_address_string (out,cDBusDaemonMutex,scope);
2789 _dbus_daemon_is_session_bus_address_published (
const char *scope)
2794 if (!_dbus_get_mutex_name(&mutex_name,scope))
2800 if (hDBusDaemonMutex)
2804 lock = _dbus_global_lock( cUniqueDBusInitMutex );
2808 hDBusDaemonMutex = CreateMutexA(
NULL,
FALSE, _dbus_string_get_const_data(&mutex_name) );
2814 _dbus_global_unlock( lock );
2818 if (hDBusDaemonMutex ==
NULL)
2820 if (GetLastError() == ERROR_ALREADY_EXISTS)
2822 CloseHandle(hDBusDaemonMutex);
2823 hDBusDaemonMutex =
NULL;
2833 _dbus_daemon_publish_session_bus_address (
const char* address,
const char *scope)
2836 char *shared_addr =
NULL;
2843 if (!_dbus_get_mutex_name(&mutex_name,scope))
2850 lock = _dbus_global_lock( cUniqueDBusInitMutex );
2852 if (!hDBusDaemonMutex)
2854 hDBusDaemonMutex = CreateMutexA(
NULL,
FALSE, _dbus_string_get_const_data(&mutex_name) );
2859 if (WaitForSingleObject( hDBusDaemonMutex, 10 ) != WAIT_OBJECT_0)
2861 _dbus_global_unlock( lock );
2862 CloseHandle( hDBusDaemonMutex );
2866 if (!_dbus_get_shm_name(&shm_name,scope))
2869 _dbus_global_unlock( lock );
2874 len = strlen (address) + 1;
2876 hDBusSharedMem = CreateFileMappingA( INVALID_HANDLE_VALUE,
NULL, PAGE_READWRITE,
2877 len >> 32, len & 0xffffffffu,
2878 _dbus_string_get_const_data(&shm_name) );
2881 shared_addr = MapViewOfFile( hDBusSharedMem, FILE_MAP_WRITE, 0, 0, 0 );
2885 strcpy( shared_addr, address);
2888 UnmapViewOfFile( shared_addr );
2890 _dbus_global_unlock( lock );
2891 _dbus_verbose(
"published session bus address at %s\n",_dbus_string_get_const_data (&shm_name) );
2898 _dbus_daemon_unpublish_session_bus_address (
void)
2903 lock = _dbus_global_lock( cUniqueDBusInitMutex );
2905 CloseHandle( hDBusSharedMem );
2907 hDBusSharedMem =
NULL;
2909 ReleaseMutex( hDBusDaemonMutex );
2911 CloseHandle( hDBusDaemonMutex );
2913 hDBusDaemonMutex =
NULL;
2915 _dbus_global_unlock( lock );
2928 sharedMem = OpenFileMappingA( FILE_MAP_READ,
FALSE, _dbus_string_get_const_data(shm_name));
2929 if( sharedMem == 0 )
2931 if ( sharedMem != 0)
2935 if( sharedMem == 0 )
2938 shared_addr = MapViewOfFile( sharedMem, FILE_MAP_READ, 0, 0, 0 );
2948 UnmapViewOfFile( shared_addr );
2950 CloseHandle( sharedMem );
2963 if (!_dbus_get_mutex_name(&mutex_name,scope))
2970 lock = _dbus_global_lock( cUniqueDBusInitMutex );
2973 daemon = CreateMutexA(
NULL,
FALSE, _dbus_string_get_const_data(&mutex_name) );
2974 if(WaitForSingleObject( daemon, 10 ) != WAIT_TIMEOUT)
2976 ReleaseMutex (daemon);
2977 CloseHandle (daemon);
2979 _dbus_global_unlock( lock );
2985 bRet = _dbus_get_autolaunch_shm( address, shm_name );
2988 CloseHandle ( daemon );
2990 _dbus_global_unlock( lock );
3002 PROCESS_INFORMATION pi;
3005 char dbus_exe_path[MAX_PATH];
3006 char dbus_args[MAX_PATH * 2];
3007 const char * daemon_name = DBUS_DAEMON_NAME
".exe";
3010 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3012 if (!_dbus_get_shm_name(&shm_name,scope))
3018 mutex = _dbus_global_lock ( cDBusAutolaunchMutex );
3020 if (_dbus_daemon_already_runs(address,&shm_name,scope))
3022 _dbus_verbose(
"found running dbus daemon for scope '%s' at %s\n",
3023 scope ? scope :
"", _dbus_string_get_const_data (&shm_name) );
3028 if (!SearchPathA(
NULL, daemon_name,
NULL,
sizeof(dbus_exe_path), dbus_exe_path, &lpFile))
3032 char dbus_module_path[MAX_PATH];
3035 _dbus_verbose(
"did not found dbus daemon executable on default search path, " 3036 "trying path where dbus shared library is located");
3038 hmod = _dbus_win_get_dll_hmodule();
3039 rc = GetModuleFileNameA(hmod, dbus_module_path,
sizeof(dbus_module_path));
3048 char *ext_idx = strrchr(dbus_module_path,
'\\');
3051 if (!SearchPathA(dbus_module_path, daemon_name,
NULL,
sizeof(dbus_exe_path), dbus_exe_path, &lpFile))
3055 printf (
"please add the path to %s to your PATH environment variable\n", daemon_name);
3056 printf (
"or start the daemon manually\n\n");
3059 _dbus_verbose(
"found dbus daemon executable at %s",dbus_module_path);
3065 ZeroMemory( &si,
sizeof(si) );
3067 ZeroMemory( &pi,
sizeof(pi) );
3069 _snprintf(dbus_args,
sizeof(dbus_args) - 1,
"\"%s\" %s", dbus_exe_path,
" --session");
3073 if(CreateProcessA(dbus_exe_path, dbus_args,
NULL,
NULL,
FALSE, CREATE_NO_WINDOW,
NULL,
NULL, &si, &pi))
3075 CloseHandle (pi.hThread);
3076 CloseHandle (pi.hProcess);
3077 retval = _dbus_get_autolaunch_shm( address, &shm_name );
3078 if (retval ==
FALSE)
3089 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3091 _DBUS_ASSERT_ERROR_IS_SET (error);
3093 _dbus_global_unlock (mutex);
3126 return InterlockedIncrement (&atomic->
value) - 1;
3141 return InterlockedDecrement (&atomic->
value) + 1;
3164 InterlockedExchange (&dummy, 1);
3166 return atomic->
value;
3190 return e == WSAEWOULDBLOCK;
3204 DWORD pathLength = MAX_PATH;
3205 unsigned char *lastSlash;
3206 unsigned char *prefix;
3218 pathLength = GetModuleFileNameA (_dbus_win_get_dll_hmodule (),
3219 _dbus_string_get_data (str), _dbus_string_get_length (str));
3221 if (pathLength == 0 || GetLastError () != 0)
3230 if (pathLength < (DWORD) _dbus_string_get_length (str))
3249 prefix = _dbus_string_get_udata (str);
3251 lastSlash = _mbsrchr (prefix,
'\\');
3252 if (lastSlash ==
NULL) {
3265 if (lastSlash - prefix >= 4 && _mbsnicmp (lastSlash - 4, (
const unsigned char *)
"\\bin", 4) == 0)
3267 else if (lastSlash - prefix >= 10 && _mbsnicmp (lastSlash - 10, (
const unsigned char *)
"\\bin\\debug", 10) == 0)
3269 else if (lastSlash - prefix >= 12 && _mbsnicmp (lastSlash - 12, (
const unsigned char *)
"\\bin\\release", 12) == 0)
3308 const char *homepath;
3309 const char *homedrive;
3318 if (homedrive !=
NULL && *homedrive !=
'\0')
3324 if (homepath !=
NULL && *homepath !=
'\0')
3329 #ifdef DBUS_ENABLE_EMBEDDED_TESTS 3331 const char *
override;
3334 if (
override !=
NULL && *
override !=
'\0')
3340 _dbus_verbose (
"Using fake homedir for testing: %s\n",
3341 _dbus_string_get_const_data (&homedir));
3348 if (!already_warned)
3350 _dbus_warn (
"Using your real home directory for testing, set DBUS_TEST_HOMEDIR to avoid");
3351 already_warned =
TRUE;
3360 #define KEYRING_DIR "dbus-keyrings" 3362 #define KEYRING_DIR ".dbus-keyrings" 3371 directory, _dbus_string_get_length (directory))) {
3391 DWORD attributes = GetFileAttributesA (file);
3393 if (attributes != INVALID_FILE_ATTRIBUTES && GetLastError() != ERROR_PATH_NOT_FOUND)
3407 _dbus_strerror (
int error_number)
3415 switch (error_number)
3418 return "Interrupted function call";
3420 return "Permission denied";
3422 return "Bad address";
3424 return "Invalid argument";
3426 return "Too many open files";
3427 case WSAEWOULDBLOCK:
3428 return "Resource temporarily unavailable";
3429 case WSAEINPROGRESS:
3430 return "Operation now in progress";
3432 return "Operation already in progress";
3434 return "Socket operation on nonsocket";
3435 case WSAEDESTADDRREQ:
3436 return "Destination address required";
3438 return "Message too long";
3440 return "Protocol wrong type for socket";
3441 case WSAENOPROTOOPT:
3442 return "Bad protocol option";
3443 case WSAEPROTONOSUPPORT:
3444 return "Protocol not supported";
3445 case WSAESOCKTNOSUPPORT:
3446 return "Socket type not supported";
3448 return "Operation not supported";
3449 case WSAEPFNOSUPPORT:
3450 return "Protocol family not supported";
3451 case WSAEAFNOSUPPORT:
3452 return "Address family not supported by protocol family";
3454 return "Address already in use";
3455 case WSAEADDRNOTAVAIL:
3456 return "Cannot assign requested address";
3458 return "Network is down";
3459 case WSAENETUNREACH:
3460 return "Network is unreachable";
3462 return "Network dropped connection on reset";
3463 case WSAECONNABORTED:
3464 return "Software caused connection abort";
3466 return "Connection reset by peer";
3468 return "No buffer space available";
3470 return "Socket is already connected";
3472 return "Socket is not connected";
3474 return "Cannot send after socket shutdown";
3476 return "Connection timed out";
3477 case WSAECONNREFUSED:
3478 return "Connection refused";
3480 return "Host is down";
3481 case WSAEHOSTUNREACH:
3482 return "No route to host";
3484 return "Too many processes";
3486 return "Graceful shutdown in progress";
3487 case WSATYPE_NOT_FOUND:
3488 return "Class type not found";
3489 case WSAHOST_NOT_FOUND:
3490 return "Host not found";
3492 return "Nonauthoritative host not found";
3493 case WSANO_RECOVERY:
3494 return "This is a nonrecoverable error";
3496 return "Valid name, no data record of requested type";
3497 case WSA_INVALID_HANDLE:
3498 return "Specified event object handle is invalid";
3499 case WSA_INVALID_PARAMETER:
3500 return "One or more parameters are invalid";
3501 case WSA_IO_INCOMPLETE:
3502 return "Overlapped I/O event object not in signaled state";
3503 case WSA_IO_PENDING:
3504 return "Overlapped operations will complete later";
3505 case WSA_NOT_ENOUGH_MEMORY:
3506 return "Insufficient memory available";
3507 case WSA_OPERATION_ABORTED:
3508 return "Overlapped operation aborted";
3509 #ifdef WSAINVALIDPROCTABLE 3511 case WSAINVALIDPROCTABLE:
3512 return "Invalid procedure table from service provider";
3514 #ifdef WSAINVALIDPROVIDER 3516 case WSAINVALIDPROVIDER:
3517 return "Invalid service provider version number";
3519 #ifdef WSAPROVIDERFAILEDINIT 3521 case WSAPROVIDERFAILEDINIT:
3522 return "Unable to initialize a service provider";
3525 case WSASYSCALLFAILURE:
3526 return "System call failure";
3528 msg = strerror (error_number);
3544 _dbus_win_set_error_from_win_error (
DBusError *error,
3550 FormatMessageA (FORMAT_MESSAGE_ALLOCATE_BUFFER |
3551 FORMAT_MESSAGE_IGNORE_INSERTS |
3552 FORMAT_MESSAGE_FROM_SYSTEM,
3553 NULL, code, MAKELANGID (LANG_ENGLISH, SUBLANG_ENGLISH_US),
3554 (LPSTR) &msg, 0,
NULL);
3561 dbus_set_error (error,
"win32.error",
"Unknown error code %d or FormatMessage failed", code);
3565 _dbus_win_warn_win_error (
const char *message,
3571 _dbus_win_set_error_from_win_error (&error, code);
3587 const char *filename_c;
3589 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
3591 filename_c = _dbus_string_get_const_data (filename);
3593 if (RemoveDirectoryA (filename_c) == 0)
3595 char *emsg = _dbus_win_error_string (GetLastError ());
3597 "Failed to remove directory %s: %s",
3599 _dbus_win_free_error_string (emsg);
3615 if (_dbus_string_get_length (filename) > 0)
3616 return _dbus_string_get_byte (filename, 1) ==
':' 3617 || _dbus_string_get_byte (filename, 0) ==
'\\' 3618 || _dbus_string_get_byte (filename, 0) ==
'/';
3630 _dbus_save_socket_errno (
void)
3636 _dbus_restore_socket_errno (
int saved_errno)
3638 _dbus_win_set_errno (saved_errno);
3641 static const char *log_tag =
"dbus";
3642 static DBusLogFlags log_flags = DBUS_LOG_FLAGS_STDERR;
3660 (flags & (DBUS_LOG_FLAGS_STDERR | DBUS_LOG_FLAGS_SYSTEM_LOG)) != 0);
3686 case DBUS_SYSTEM_LOG_INFO: s =
"info";
break;
3687 case DBUS_SYSTEM_LOG_WARNING: s =
"warning";
break;
3688 case DBUS_SYSTEM_LOG_SECURITY: s =
"security";
break;
3689 case DBUS_SYSTEM_LOG_FATAL: s =
"fatal";
break;
3692 if (log_flags & DBUS_LOG_FLAGS_SYSTEM_LOG)
3697 DBUS_VA_COPY (tmp, args);
3698 snprintf (format,
sizeof (format),
"%s: %s", s, msg);
3699 vsnprintf(buf,
sizeof(buf), format, tmp);
3700 OutputDebugStringA(buf);
3704 if (log_flags & DBUS_LOG_FLAGS_STDERR)
3706 DBUS_VA_COPY (tmp, args);
3708 vfprintf (stderr, msg, tmp);
3709 fprintf (stderr,
"\n");
3713 if (severity == DBUS_SYSTEM_LOG_FATAL)
dbus_bool_t _dbus_string_append(DBusString *str, const char *buffer)
Appends a nul-terminated C-style string to a DBusString.
An atomic integer safe to increment or decrement from multiple threads.
#define DBUS_ERROR_FILE_NOT_FOUND
Missing file.
#define DBUS_ERROR_FILE_EXISTS
Existing file and the operation you're using does not silently overwrite.
const char * message
public error message field
#define NULL
A null pointer, defined appropriately for C or C++.
volatile dbus_int32_t value
Value of the atomic integer.
dbus_bool_t _dbus_check_dir_is_private_to_user(DBusString *dir, DBusError *error)
Checks to make sure the given directory is private to the user.
void _dbus_abort(void)
Aborts the program with SIGABRT (dumping core).
void * dbus_realloc(void *memory, size_t bytes)
Resizes a block of memory previously allocated by dbus_malloc() or dbus_malloc0().
dbus_bool_t _dbus_string_lengthen(DBusString *str, int additional_length)
Makes a string longer by the given number of bytes.
void dbus_free(void *memory)
Frees a block of memory previously allocated by dbus_malloc() or dbus_malloc0().
dbus_bool_t _dbus_socketpair(DBusSocket *fd1, DBusSocket *fd2, dbus_bool_t blocking, DBusError *error)
Creates pair of connect sockets (as in socketpair()).
#define dbus_new(type, count)
Safe macro for using dbus_malloc().
dbus_bool_t _dbus_path_is_absolute(const DBusString *filename)
Checks whether the filename is an absolute path.
dbus_uint32_t as_uint32s[DBUS_UUID_LENGTH_WORDS]
guid as four uint32 values
#define _dbus_assert(condition)
Aborts with an error message if the condition is false.
dbus_bool_t _dbus_check_setuid(void)
NOTE: If you modify this function, please also consider making the corresponding change in GLib...
void _dbus_string_tolower_ascii(const DBusString *str, int start, int len)
Converts the given range of the string to lower case.
void dbus_error_free(DBusError *error)
Frees an error that's been set (or just initialized), then reinitializes the error as in dbus_error_i...
A globally unique ID ; we have one for each DBusServer, and also one for each machine with libdbus in...
dbus_pid_t _dbus_getpid(void)
Gets our process ID.
#define _DBUS_POLLIN
There is data to read.
dbus_bool_t _dbus_concat_dir_and_file(DBusString *dir, const DBusString *next_component)
Appends the given filename to the given directory.
dbus_bool_t _dbus_file_exists(const char *file)
Checks if a file exists.
char * _dbus_string_get_data_len(DBusString *str, int start, int len)
Gets a sub-portion of the raw character buffer from the string.
int _dbus_read_socket(DBusSocket fd, DBusString *buffer, int count)
Socket interface.
dbus_bool_t _dbus_string_init(DBusString *str)
Initializes a string.
#define DBUS_ERROR_IO_ERROR
Something went wrong reading or writing to a socket, for example.
void _dbus_string_shorten(DBusString *str, int length_to_remove)
Makes a string shorter by the given number of bytes.
short events
Events to poll for.
dbus_bool_t _dbus_string_copy(const DBusString *source, int start, DBusString *dest, int insert_at)
Like _dbus_string_move(), but does not delete the section of the source string that's copied to the d...
dbus_bool_t _dbus_credentials_add_windows_sid(DBusCredentials *credentials, const char *windows_sid)
Add a Windows user SID to the credentials.
dbus_bool_t _dbus_send_credentials_socket(DBusSocket handle, DBusError *error)
Sends a single nul byte with our UNIX credentials as ancillary data.
dbus_bool_t _dbus_close_socket(DBusSocket fd, DBusError *error)
Closes a file descriptor.
#define DBUS_UID_UNSET
an invalid UID used to represent an uninitialized dbus_uid_t field
dbus_bool_t _dbus_delete_file(const DBusString *filename, DBusError *error)
Deletes the given file.
dbus_bool_t _dbus_get_autolaunch_address(const char *scope, DBusString *address, DBusError *error)
Returns the address of a new session bus.
const char * _dbus_error_from_errno(int error_number)
Converts a UNIX errno, or Windows errno or WinSock error value into a DBusError name.
unsigned long dbus_pid_t
A process ID.
void * dbus_malloc(size_t bytes)
Allocates the given number of bytes, as with standard malloc().
dbus_bool_t _dbus_append_user_from_current_process(DBusString *str)
Append to the string the identity we would like to have when we authenticate, on UNIX this is the cur...
dbus_bool_t _dbus_credentials_are_anonymous(DBusCredentials *credentials)
Checks whether a credentials object contains a user identity.
dbus_bool_t _dbus_get_is_errno_eagain_or_ewouldblock(int e)
See if errno is EAGAIN or EWOULDBLOCK (this has to be done differently for Winsock so is abstracted) ...
dbus_uint32_t dbus_bool_t
A boolean, valid values are TRUE and FALSE.
void _dbus_string_init_const(DBusString *str, const char *value)
Initializes a constant string.
dbus_bool_t _dbus_make_file_world_readable(const DBusString *filename, DBusError *error)
Makes the file readable by every user in the system.
#define _DBUS_POLLOUT
Writing now will not block.
void _dbus_warn(const char *format,...)
Prints a warning message to stderr.
int _dbus_write_socket_two(DBusSocket fd, const DBusString *buffer1, int start1, int len1, const DBusString *buffer2, int start2, int len2)
Like _dbus_write() but will use writev() if possible to write both buffers in sequence.
DBusSocket _dbus_accept(DBusSocket listen_fd)
Accepts a connection on a listening socket.
dbus_int32_t _dbus_atomic_inc(DBusAtomic *atomic)
Atomically increments an integer.
void _dbus_print_backtrace(void)
On GNU libc systems, print a crude backtrace to stderr.
dbus_bool_t _dbus_append_keyring_directory_for_credentials(DBusString *directory, DBusCredentials *credentials)
Appends the directory in which a keyring for the given credentials should be stored.
dbus_bool_t _dbus_read_credentials_socket(DBusSocket handle, DBusCredentials *credentials, DBusError *error)
Reads a single byte which must be nul (an error occurs otherwise), and reads unix credentials if avai...
dbus_bool_t _dbus_create_directory(const DBusString *filename, DBusError *error)
Creates a directory; succeeds if the directory is created or already existed.
dbus_bool_t _dbus_delete_directory(const DBusString *filename, DBusError *error)
Removes a directory; Directory must be empty.
Object representing an exception.
void _dbus_get_monotonic_time(long *tv_sec, long *tv_usec)
Get current time, as in gettimeofday().
int _dbus_listen_tcp_socket(const char *host, const char *port, const char *family, DBusString *retport, DBusSocket **fds_p, DBusError *error)
Creates a socket and binds it to the given path, then listens on the socket.
dbus_bool_t _dbus_string_validate_utf8(const DBusString *str, int start, int len)
Checks that the given range of the string is valid UTF-8.
void _dbus_disable_sigpipe(void)
signal (SIGPIPE, SIG_IGN);
void dbus_set_error(DBusError *error, const char *name, const char *format,...)
Assigns an error name and message to a DBusError.
void _dbus_flush_caches(void)
Called when the bus daemon is signaled to reload its configuration; any caches should be nuked...
const char * _dbus_get_tmpdir(void)
Gets the temporary files directory by inspecting the environment variables TMPDIR, TMP, and TEMP in that order.
dbus_bool_t _dbus_string_append_byte(DBusString *str, unsigned char byte)
Appends a single byte to the string, returning FALSE if not enough memory.
#define _DBUS_UNLOCK(name)
Unlocks a global lock.
void _dbus_string_free(DBusString *str)
Frees a string created by _dbus_string_init().
dbus_bool_t _dbus_credentials_add_from_current_process(DBusCredentials *credentials)
Adds the credentials of the current process to the passed-in credentials object.
#define TRUE
Expands to "1".
DBusPollable fd
File descriptor.
#define _dbus_assert_not_reached(explanation)
Aborts with an error message if called.
dbus_bool_t _dbus_credentials_add_pid(DBusCredentials *credentials, dbus_pid_t pid)
Add a UNIX process ID to the credentials.
#define DBUS_ERROR_FAILED
A generic error; "something went wrong" - see the error message for more.
void _dbus_exit(int code)
Exit the process, returning the given value.
const char * _dbus_strerror_from_errno(void)
Get error message from errno.
unsigned long _dbus_pid_for_log(void)
The only reason this is separate from _dbus_getpid() is to allow it on Windows for logging but not fo...
DBusSocket _dbus_connect_tcp_socket(const char *host, const char *port, const char *family, DBusError *error)
Creates a socket and connects to a socket at the given host and port.
void dbus_error_init(DBusError *error)
Initializes a DBusError structure.
dbus_int32_t _dbus_atomic_dec(DBusAtomic *atomic)
Atomically decrement an integer.
#define DBUS_ERROR_ACCESS_DENIED
Security restrictions don't allow doing what you're trying to do.
dbus_uid_t _dbus_getuid(void)
Gets our Unix UID.
void _dbus_init_system_log(const char *tag, DBusLogFlags flags)
Initialize the system log.
dbus_bool_t _dbus_generate_random_bytes(DBusString *str, int n_bytes, DBusError *error)
Generates the given number of random bytes, using the best mechanism we can come up with...
dbus_bool_t _dbus_set_socket_nonblocking(DBusSocket handle, DBusError *error)
Sets a file descriptor to be nonblocking.
#define DBUS_ERROR_NO_MEMORY
There was not enough memory to complete an operation.
dbus_bool_t _dbus_lookup_session_address(dbus_bool_t *supported, DBusString *address, DBusError *error)
Determines the address of the session bus by querying a platform-specific method. ...
void _dbus_logv(DBusSystemLogSeverity severity, const char *msg, va_list args)
Log a message to the system log file (e.g.
#define FALSE
Expands to "0".
dbus_bool_t _dbus_read_local_machine_uuid(DBusGUID *machine_id, dbus_bool_t create_if_not_found, DBusError *error)
Reads the uuid of the machine we're running on from the dbus configuration.
dbus_bool_t _dbus_sha_compute(const DBusString *data, DBusString *ascii_output)
Computes the ASCII hex-encoded shasum of the given data and appends it to the output string...
void dbus_set_error_const(DBusError *error, const char *name, const char *message)
Assigns an error name and message to a DBusError.
dbus_bool_t _dbus_string_set_length(DBusString *str, int length)
Sets the length of a string.
#define _DBUS_LOCK(name)
Locks a global lock, initializing it first if necessary.
int _dbus_write_socket(DBusSocket fd, const DBusString *buffer, int start, int len)
Thin wrapper around the write() system call that writes a part of a DBusString and handles EINTR for ...
dbus_int32_t _dbus_atomic_get(DBusAtomic *atomic)
Atomically get the value of an integer.
void _dbus_sleep_milliseconds(int milliseconds)
Sleeps the given number of milliseconds.
DBUS_PRIVATE_EXPORT void _dbus_verbose_bytes_of_string(const DBusString *str, int start, int len)
Dump the given part of the string to verbose log.
int _dbus_printf_string_upper_bound(const char *format, va_list args)
Measure the message length without terminating nul.
#define _DBUS_ZERO(object)
Sets all bits in an object to zero.
const char * _dbus_getenv(const char *varname)
Wrapper for getenv().
#define DBUS_ERROR_INVALID_ARGS
Invalid arguments passed to a method call.
unsigned long dbus_uid_t
A user ID.
int _dbus_poll(DBusPollFD *fds, int n_fds, int timeout_milliseconds)
Wrapper for poll().
short revents
Events that occurred.
#define DBUS_ERROR_LIMITS_EXCEEDED
Some limited resource is exhausted.
void _dbus_string_init_const_len(DBusString *str, const char *value, int len)
Initializes a constant string with a length.
void _dbus_get_real_time(long *tv_sec, long *tv_usec)
Get current time, as in gettimeofday().
#define _DBUS_POLLERR
Error condition.
dbus_bool_t _dbus_credentials_add_from_user(DBusCredentials *credentials, const DBusString *username)
Adds the credentials corresponding to the given username.