4 * Copyright (c) 2003-2008 Fabrice Bellard
5 * Copyright (c) 2010-2016 Red Hat, Inc.
7 * QEMU library functions for win32 which are shared between QEMU and
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
28 * The implementation of g_poll (functions poll_rest, g_poll) at the end of
29 * this file are based on code from GNOME glib-2 and use a different license,
30 * see the license comment there.
33 #include "qemu/osdep.h"
35 #include "qemu-common.h"
36 #include "qapi/error.h"
37 #include "qemu/main-loop.h"
39 #include "qemu/sockets.h"
40 #include "qemu/cutils.h"
41 #include "qemu/error-report.h"
44 /* this must come after including "trace.h" */
47 void *qemu_oom_check(void *ptr
)
50 fprintf(stderr
, "Failed to allocate memory: %lu\n", GetLastError());
56 void *qemu_try_memalign(size_t alignment
, size_t size
)
61 g_assert(is_power_of_2(alignment
));
62 ptr
= _aligned_malloc(size
, alignment
);
63 trace_qemu_memalign(alignment
, size
, ptr
);
67 void *qemu_memalign(size_t alignment
, size_t size
)
69 return qemu_oom_check(qemu_try_memalign(alignment
, size
));
72 static int get_allocation_granularity(void)
74 SYSTEM_INFO system_info
;
76 GetSystemInfo(&system_info
);
77 return system_info
.dwAllocationGranularity
;
80 void *qemu_anon_ram_alloc(size_t size
, uint64_t *align
, bool shared
,
87 * We need a MEM_COMMIT before accessing any memory in a MEM_RESERVE
88 * area; we cannot easily mimic POSIX MAP_NORESERVE semantics.
90 error_report("Skipping reservation of swap space is not supported.");
94 ptr
= VirtualAlloc(NULL
, size
, MEM_COMMIT
, PAGE_READWRITE
);
95 trace_qemu_anon_ram_alloc(size
, ptr
);
98 *align
= MAX(get_allocation_granularity(), getpagesize());
103 void qemu_vfree(void *ptr
)
105 trace_qemu_vfree(ptr
);
109 void qemu_anon_ram_free(void *ptr
, size_t size
)
111 trace_qemu_anon_ram_free(ptr
, size
);
113 VirtualFree(ptr
, 0, MEM_RELEASE
);
117 #ifndef _POSIX_THREAD_SAFE_FUNCTIONS
118 /* FIXME: add proper locking */
119 struct tm
*gmtime_r(const time_t *timep
, struct tm
*result
)
121 struct tm
*p
= gmtime(timep
);
122 memset(result
, 0, sizeof(*result
));
130 /* FIXME: add proper locking */
131 struct tm
*localtime_r(const time_t *timep
, struct tm
*result
)
133 struct tm
*p
= localtime(timep
);
134 memset(result
, 0, sizeof(*result
));
141 #endif /* _POSIX_THREAD_SAFE_FUNCTIONS */
143 static int socket_error(void)
145 switch (WSAGetLastError()) {
152 case WSA_INVALID_HANDLE
:
154 case WSA_NOT_ENOUGH_MEMORY
:
156 case WSA_INVALID_PARAMETER
:
158 case WSAENAMETOOLONG
:
163 /* not using EWOULDBLOCK as we don't want code to have
164 * to check both EWOULDBLOCK and EAGAIN */
172 case WSAEDESTADDRREQ
:
180 case WSAEPROTONOSUPPORT
:
181 return EPROTONOSUPPORT
;
184 case WSAEAFNOSUPPORT
:
188 case WSAEADDRNOTAVAIL
:
189 return EADDRNOTAVAIL
;
196 case WSAECONNABORTED
:
208 case WSAECONNREFUSED
:
212 case WSAEHOSTUNREACH
:
219 void qemu_set_block(int fd
)
221 unsigned long opt
= 0;
222 WSAEventSelect(fd
, NULL
, 0);
223 ioctlsocket(fd
, FIONBIO
, &opt
);
226 int qemu_try_set_nonblock(int fd
)
228 unsigned long opt
= 1;
229 if (ioctlsocket(fd
, FIONBIO
, &opt
) != NO_ERROR
) {
230 return -socket_error();
235 void qemu_set_nonblock(int fd
)
237 (void)qemu_try_set_nonblock(fd
);
240 int socket_set_fast_reuse(int fd
)
242 /* Enabling the reuse of an endpoint that was used by a socket still in
243 * TIME_WAIT state is usually performed by setting SO_REUSEADDR. On Windows
244 * fast reuse is the default and SO_REUSEADDR does strange things. So we
245 * don't have to do anything here. More info can be found at:
246 * http://msdn.microsoft.com/en-us/library/windows/desktop/ms740621.aspx */
250 int inet_aton(const char *cp
, struct in_addr
*ia
)
252 uint32_t addr
= inet_addr(cp
);
253 if (addr
== 0xffffffff) {
260 void qemu_set_cloexec(int fd
)
264 /* Offset between 1/1/1601 and 1/1/1970 in 100 nanosec units */
265 #define _W32_FT_OFFSET (116444736000000000ULL)
267 int qemu_gettimeofday(qemu_timeval
*tp
)
270 unsigned long long ns100
; /*time since 1 Jan 1601 in 100ns units */
275 GetSystemTimeAsFileTime (&_now
.ft
);
276 tp
->tv_usec
=(long)((_now
.ns100
/ 10ULL) % 1000000ULL );
277 tp
->tv_sec
= (long)((_now
.ns100
- _W32_FT_OFFSET
) / 10000000ULL);
279 /* Always return 0 as per Open Group Base Specifications Issue 6.
280 Do not set errno on error. */
284 int qemu_get_thread_id(void)
286 return GetCurrentThreadId();
290 qemu_get_local_state_pathname(const char *relative_pathname
)
293 char base_path
[MAX_PATH
+1] = "";
295 result
= SHGetFolderPath(NULL
, CSIDL_COMMON_APPDATA
, NULL
,
296 /* SHGFP_TYPE_CURRENT */ 0, base_path
);
297 if (result
!= S_OK
) {
298 /* misconfigured environment */
299 g_critical("CSIDL_COMMON_APPDATA unavailable: %ld", (long)result
);
302 return g_strdup_printf("%s" G_DIR_SEPARATOR_S
"%s", base_path
,
306 void qemu_set_tty_echo(int fd
, bool echo
)
308 HANDLE handle
= (HANDLE
)_get_osfhandle(fd
);
311 if (handle
== INVALID_HANDLE_VALUE
) {
315 GetConsoleMode(handle
, &dwMode
);
318 SetConsoleMode(handle
, dwMode
| ENABLE_ECHO_INPUT
| ENABLE_LINE_INPUT
);
320 SetConsoleMode(handle
,
321 dwMode
& ~(ENABLE_ECHO_INPUT
| ENABLE_LINE_INPUT
));
325 static const char *exec_dir
;
327 void qemu_init_exec_dir(const char *argv0
)
338 len
= GetModuleFileName(NULL
, buf
, sizeof(buf
) - 1);
345 while (p
!= buf
&& *p
!= '\\') {
349 if (access(buf
, R_OK
) == 0) {
350 exec_dir
= g_strdup(buf
);
352 exec_dir
= CONFIG_BINDIR
;
356 const char *qemu_get_exec_dir(void)
361 int getpagesize(void)
363 SYSTEM_INFO system_info
;
365 GetSystemInfo(&system_info
);
366 return system_info
.dwPageSize
;
369 void os_mem_prealloc(int fd
, char *area
, size_t memory
, int smp_cpus
,
373 size_t pagesize
= qemu_real_host_page_size
;
375 memory
= (memory
+ pagesize
- 1) & -pagesize
;
376 for (i
= 0; i
< memory
/ pagesize
; i
++) {
377 memset(area
+ pagesize
* i
, 0, 1);
381 char *qemu_get_pid_name(pid_t pid
)
383 /* XXX Implement me */
388 pid_t
qemu_fork(Error
**errp
)
391 error_setg_errno(errp
, errno
,
392 "cannot fork child process");
398 int qemu_connect_wrap(int sockfd
, const struct sockaddr
*addr
,
402 ret
= connect(sockfd
, addr
, addrlen
);
404 if (WSAGetLastError() == WSAEWOULDBLOCK
) {
407 errno
= socket_error();
415 int qemu_listen_wrap(int sockfd
, int backlog
)
418 ret
= listen(sockfd
, backlog
);
420 errno
= socket_error();
427 int qemu_bind_wrap(int sockfd
, const struct sockaddr
*addr
,
431 ret
= bind(sockfd
, addr
, addrlen
);
433 errno
= socket_error();
440 int qemu_socket_wrap(int domain
, int type
, int protocol
)
443 ret
= socket(domain
, type
, protocol
);
445 errno
= socket_error();
452 int qemu_accept_wrap(int sockfd
, struct sockaddr
*addr
,
456 ret
= accept(sockfd
, addr
, addrlen
);
458 errno
= socket_error();
465 int qemu_shutdown_wrap(int sockfd
, int how
)
468 ret
= shutdown(sockfd
, how
);
470 errno
= socket_error();
477 int qemu_ioctlsocket_wrap(int fd
, int req
, void *val
)
480 ret
= ioctlsocket(fd
, req
, val
);
482 errno
= socket_error();
489 int qemu_closesocket_wrap(int fd
)
492 ret
= closesocket(fd
);
494 errno
= socket_error();
501 int qemu_getsockopt_wrap(int sockfd
, int level
, int optname
,
502 void *optval
, socklen_t
*optlen
)
505 ret
= getsockopt(sockfd
, level
, optname
, optval
, optlen
);
507 errno
= socket_error();
514 int qemu_setsockopt_wrap(int sockfd
, int level
, int optname
,
515 const void *optval
, socklen_t optlen
)
518 ret
= setsockopt(sockfd
, level
, optname
, optval
, optlen
);
520 errno
= socket_error();
527 int qemu_getpeername_wrap(int sockfd
, struct sockaddr
*addr
,
531 ret
= getpeername(sockfd
, addr
, addrlen
);
533 errno
= socket_error();
540 int qemu_getsockname_wrap(int sockfd
, struct sockaddr
*addr
,
544 ret
= getsockname(sockfd
, addr
, addrlen
);
546 errno
= socket_error();
553 ssize_t
qemu_send_wrap(int sockfd
, const void *buf
, size_t len
, int flags
)
556 ret
= send(sockfd
, buf
, len
, flags
);
558 errno
= socket_error();
565 ssize_t
qemu_sendto_wrap(int sockfd
, const void *buf
, size_t len
, int flags
,
566 const struct sockaddr
*addr
, socklen_t addrlen
)
569 ret
= sendto(sockfd
, buf
, len
, flags
, addr
, addrlen
);
571 errno
= socket_error();
578 ssize_t
qemu_recv_wrap(int sockfd
, void *buf
, size_t len
, int flags
)
581 ret
= recv(sockfd
, buf
, len
, flags
);
583 errno
= socket_error();
590 ssize_t
qemu_recvfrom_wrap(int sockfd
, void *buf
, size_t len
, int flags
,
591 struct sockaddr
*addr
, socklen_t
*addrlen
)
594 ret
= recvfrom(sockfd
, buf
, len
, flags
, addr
, addrlen
);
596 errno
= socket_error();
601 bool qemu_write_pidfile(const char *filename
, Error
**errp
)
608 memset(&overlap
, 0, sizeof(overlap
));
610 file
= CreateFile(filename
, GENERIC_WRITE
, FILE_SHARE_READ
, NULL
,
611 OPEN_ALWAYS
, FILE_ATTRIBUTE_NORMAL
, NULL
);
613 if (file
== INVALID_HANDLE_VALUE
) {
614 error_setg(errp
, "Failed to create PID file");
617 len
= snprintf(buffer
, sizeof(buffer
), FMT_pid
"\n", (pid_t
)getpid());
618 ret
= WriteFile(file
, (LPCVOID
)buffer
, (DWORD
)len
,
622 error_setg(errp
, "Failed to write PID file");
628 char *qemu_get_host_name(Error
**errp
)
630 wchar_t tmp
[MAX_COMPUTERNAME_LENGTH
+ 1];
631 DWORD size
= G_N_ELEMENTS(tmp
);
633 if (GetComputerNameW(tmp
, &size
) == 0) {
634 error_setg_win32(errp
, GetLastError(), "failed close handle");
638 return g_utf16_to_utf8(tmp
, size
, NULL
, NULL
, NULL
);
641 size_t qemu_get_host_physmem(void)
643 MEMORYSTATUSEX statex
;
644 statex
.dwLength
= sizeof(statex
);
646 if (GlobalMemoryStatusEx(&statex
)) {
647 return statex
.ullTotalPhys
;