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 if (alignment
< sizeof(void *)) {
62 alignment
= sizeof(void *);
64 g_assert(is_power_of_2(alignment
));
66 ptr
= _aligned_malloc(size
, alignment
);
67 trace_qemu_memalign(alignment
, size
, ptr
);
71 void *qemu_memalign(size_t alignment
, size_t size
)
73 return qemu_oom_check(qemu_try_memalign(alignment
, size
));
76 static int get_allocation_granularity(void)
78 SYSTEM_INFO system_info
;
80 GetSystemInfo(&system_info
);
81 return system_info
.dwAllocationGranularity
;
84 void *qemu_anon_ram_alloc(size_t size
, uint64_t *align
, bool shared
,
91 * We need a MEM_COMMIT before accessing any memory in a MEM_RESERVE
92 * area; we cannot easily mimic POSIX MAP_NORESERVE semantics.
94 error_report("Skipping reservation of swap space is not supported.");
98 ptr
= VirtualAlloc(NULL
, size
, MEM_COMMIT
, PAGE_READWRITE
);
99 trace_qemu_anon_ram_alloc(size
, ptr
);
102 *align
= MAX(get_allocation_granularity(), getpagesize());
107 void qemu_vfree(void *ptr
)
109 trace_qemu_vfree(ptr
);
113 void qemu_anon_ram_free(void *ptr
, size_t size
)
115 trace_qemu_anon_ram_free(ptr
, size
);
117 VirtualFree(ptr
, 0, MEM_RELEASE
);
121 #ifndef _POSIX_THREAD_SAFE_FUNCTIONS
122 /* FIXME: add proper locking */
123 struct tm
*gmtime_r(const time_t *timep
, struct tm
*result
)
125 struct tm
*p
= gmtime(timep
);
126 memset(result
, 0, sizeof(*result
));
134 /* FIXME: add proper locking */
135 struct tm
*localtime_r(const time_t *timep
, struct tm
*result
)
137 struct tm
*p
= localtime(timep
);
138 memset(result
, 0, sizeof(*result
));
145 #endif /* _POSIX_THREAD_SAFE_FUNCTIONS */
147 static int socket_error(void)
149 switch (WSAGetLastError()) {
156 case WSA_INVALID_HANDLE
:
158 case WSA_NOT_ENOUGH_MEMORY
:
160 case WSA_INVALID_PARAMETER
:
162 case WSAENAMETOOLONG
:
167 /* not using EWOULDBLOCK as we don't want code to have
168 * to check both EWOULDBLOCK and EAGAIN */
176 case WSAEDESTADDRREQ
:
184 case WSAEPROTONOSUPPORT
:
185 return EPROTONOSUPPORT
;
188 case WSAEAFNOSUPPORT
:
192 case WSAEADDRNOTAVAIL
:
193 return EADDRNOTAVAIL
;
200 case WSAECONNABORTED
:
212 case WSAECONNREFUSED
:
216 case WSAEHOSTUNREACH
:
223 void qemu_set_block(int fd
)
225 unsigned long opt
= 0;
226 WSAEventSelect(fd
, NULL
, 0);
227 ioctlsocket(fd
, FIONBIO
, &opt
);
230 int qemu_try_set_nonblock(int fd
)
232 unsigned long opt
= 1;
233 if (ioctlsocket(fd
, FIONBIO
, &opt
) != NO_ERROR
) {
234 return -socket_error();
239 void qemu_set_nonblock(int fd
)
241 (void)qemu_try_set_nonblock(fd
);
244 int socket_set_fast_reuse(int fd
)
246 /* Enabling the reuse of an endpoint that was used by a socket still in
247 * TIME_WAIT state is usually performed by setting SO_REUSEADDR. On Windows
248 * fast reuse is the default and SO_REUSEADDR does strange things. So we
249 * don't have to do anything here. More info can be found at:
250 * http://msdn.microsoft.com/en-us/library/windows/desktop/ms740621.aspx */
254 int inet_aton(const char *cp
, struct in_addr
*ia
)
256 uint32_t addr
= inet_addr(cp
);
257 if (addr
== 0xffffffff) {
264 void qemu_set_cloexec(int fd
)
268 /* Offset between 1/1/1601 and 1/1/1970 in 100 nanosec units */
269 #define _W32_FT_OFFSET (116444736000000000ULL)
271 int qemu_gettimeofday(qemu_timeval
*tp
)
274 unsigned long long ns100
; /*time since 1 Jan 1601 in 100ns units */
279 GetSystemTimeAsFileTime (&_now
.ft
);
280 tp
->tv_usec
=(long)((_now
.ns100
/ 10ULL) % 1000000ULL );
281 tp
->tv_sec
= (long)((_now
.ns100
- _W32_FT_OFFSET
) / 10000000ULL);
283 /* Always return 0 as per Open Group Base Specifications Issue 6.
284 Do not set errno on error. */
288 int qemu_get_thread_id(void)
290 return GetCurrentThreadId();
294 qemu_get_local_state_pathname(const char *relative_pathname
)
297 char base_path
[MAX_PATH
+1] = "";
299 result
= SHGetFolderPath(NULL
, CSIDL_COMMON_APPDATA
, NULL
,
300 /* SHGFP_TYPE_CURRENT */ 0, base_path
);
301 if (result
!= S_OK
) {
302 /* misconfigured environment */
303 g_critical("CSIDL_COMMON_APPDATA unavailable: %ld", (long)result
);
306 return g_strdup_printf("%s" G_DIR_SEPARATOR_S
"%s", base_path
,
310 void qemu_set_tty_echo(int fd
, bool echo
)
312 HANDLE handle
= (HANDLE
)_get_osfhandle(fd
);
315 if (handle
== INVALID_HANDLE_VALUE
) {
319 GetConsoleMode(handle
, &dwMode
);
322 SetConsoleMode(handle
, dwMode
| ENABLE_ECHO_INPUT
| ENABLE_LINE_INPUT
);
324 SetConsoleMode(handle
,
325 dwMode
& ~(ENABLE_ECHO_INPUT
| ENABLE_LINE_INPUT
));
329 static const char *exec_dir
;
331 void qemu_init_exec_dir(const char *argv0
)
342 len
= GetModuleFileName(NULL
, buf
, sizeof(buf
) - 1);
349 while (p
!= buf
&& *p
!= '\\') {
353 if (access(buf
, R_OK
) == 0) {
354 exec_dir
= g_strdup(buf
);
356 exec_dir
= CONFIG_BINDIR
;
360 const char *qemu_get_exec_dir(void)
365 int getpagesize(void)
367 SYSTEM_INFO system_info
;
369 GetSystemInfo(&system_info
);
370 return system_info
.dwPageSize
;
373 void os_mem_prealloc(int fd
, char *area
, size_t memory
, int smp_cpus
,
377 size_t pagesize
= qemu_real_host_page_size
;
379 memory
= (memory
+ pagesize
- 1) & -pagesize
;
380 for (i
= 0; i
< memory
/ pagesize
; i
++) {
381 memset(area
+ pagesize
* i
, 0, 1);
385 char *qemu_get_pid_name(pid_t pid
)
387 /* XXX Implement me */
392 pid_t
qemu_fork(Error
**errp
)
395 error_setg_errno(errp
, errno
,
396 "cannot fork child process");
402 int qemu_connect_wrap(int sockfd
, const struct sockaddr
*addr
,
406 ret
= connect(sockfd
, addr
, addrlen
);
408 if (WSAGetLastError() == WSAEWOULDBLOCK
) {
411 errno
= socket_error();
419 int qemu_listen_wrap(int sockfd
, int backlog
)
422 ret
= listen(sockfd
, backlog
);
424 errno
= socket_error();
431 int qemu_bind_wrap(int sockfd
, const struct sockaddr
*addr
,
435 ret
= bind(sockfd
, addr
, addrlen
);
437 errno
= socket_error();
444 int qemu_socket_wrap(int domain
, int type
, int protocol
)
447 ret
= socket(domain
, type
, protocol
);
449 errno
= socket_error();
456 int qemu_accept_wrap(int sockfd
, struct sockaddr
*addr
,
460 ret
= accept(sockfd
, addr
, addrlen
);
462 errno
= socket_error();
469 int qemu_shutdown_wrap(int sockfd
, int how
)
472 ret
= shutdown(sockfd
, how
);
474 errno
= socket_error();
481 int qemu_ioctlsocket_wrap(int fd
, int req
, void *val
)
484 ret
= ioctlsocket(fd
, req
, val
);
486 errno
= socket_error();
493 int qemu_closesocket_wrap(int fd
)
496 ret
= closesocket(fd
);
498 errno
= socket_error();
505 int qemu_getsockopt_wrap(int sockfd
, int level
, int optname
,
506 void *optval
, socklen_t
*optlen
)
509 ret
= getsockopt(sockfd
, level
, optname
, optval
, optlen
);
511 errno
= socket_error();
518 int qemu_setsockopt_wrap(int sockfd
, int level
, int optname
,
519 const void *optval
, socklen_t optlen
)
522 ret
= setsockopt(sockfd
, level
, optname
, optval
, optlen
);
524 errno
= socket_error();
531 int qemu_getpeername_wrap(int sockfd
, struct sockaddr
*addr
,
535 ret
= getpeername(sockfd
, addr
, addrlen
);
537 errno
= socket_error();
544 int qemu_getsockname_wrap(int sockfd
, struct sockaddr
*addr
,
548 ret
= getsockname(sockfd
, addr
, addrlen
);
550 errno
= socket_error();
557 ssize_t
qemu_send_wrap(int sockfd
, const void *buf
, size_t len
, int flags
)
560 ret
= send(sockfd
, buf
, len
, flags
);
562 errno
= socket_error();
569 ssize_t
qemu_sendto_wrap(int sockfd
, const void *buf
, size_t len
, int flags
,
570 const struct sockaddr
*addr
, socklen_t addrlen
)
573 ret
= sendto(sockfd
, buf
, len
, flags
, addr
, addrlen
);
575 errno
= socket_error();
582 ssize_t
qemu_recv_wrap(int sockfd
, void *buf
, size_t len
, int flags
)
585 ret
= recv(sockfd
, buf
, len
, flags
);
587 errno
= socket_error();
594 ssize_t
qemu_recvfrom_wrap(int sockfd
, void *buf
, size_t len
, int flags
,
595 struct sockaddr
*addr
, socklen_t
*addrlen
)
598 ret
= recvfrom(sockfd
, buf
, len
, flags
, addr
, addrlen
);
600 errno
= socket_error();
605 bool qemu_write_pidfile(const char *filename
, Error
**errp
)
612 memset(&overlap
, 0, sizeof(overlap
));
614 file
= CreateFile(filename
, GENERIC_WRITE
, FILE_SHARE_READ
, NULL
,
615 OPEN_ALWAYS
, FILE_ATTRIBUTE_NORMAL
, NULL
);
617 if (file
== INVALID_HANDLE_VALUE
) {
618 error_setg(errp
, "Failed to create PID file");
621 len
= snprintf(buffer
, sizeof(buffer
), FMT_pid
"\n", (pid_t
)getpid());
622 ret
= WriteFile(file
, (LPCVOID
)buffer
, (DWORD
)len
,
626 error_setg(errp
, "Failed to write PID file");
632 char *qemu_get_host_name(Error
**errp
)
634 wchar_t tmp
[MAX_COMPUTERNAME_LENGTH
+ 1];
635 DWORD size
= G_N_ELEMENTS(tmp
);
637 if (GetComputerNameW(tmp
, &size
) == 0) {
638 error_setg_win32(errp
, GetLastError(), "failed close handle");
642 return g_utf16_to_utf8(tmp
, size
, NULL
, NULL
, NULL
);
645 size_t qemu_get_host_physmem(void)
647 MEMORYSTATUSEX statex
;
648 statex
.dwLength
= sizeof(statex
);
650 if (GlobalMemoryStatusEx(&statex
)) {
651 return statex
.ullTotalPhys
;