]> git.proxmox.com Git - mirror_qemu.git/blob - util/oslib-win32.c
include: move qemu_*_exec_dir() to cutils
[mirror_qemu.git] / util / oslib-win32.c
1 /*
2 * os-win32.c
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 * Copyright (c) 2010-2016 Red Hat, Inc.
6 *
7 * QEMU library functions for win32 which are shared between QEMU and
8 * the QEMU tools.
9 *
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:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
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
26 * THE SOFTWARE.
27 *
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.
31 */
32
33 #include "qemu/osdep.h"
34 #include <windows.h>
35 #include "qapi/error.h"
36 #include "qemu/main-loop.h"
37 #include "trace.h"
38 #include "qemu/sockets.h"
39 #include "qemu/cutils.h"
40 #include "qemu/error-report.h"
41 #include <malloc.h>
42
43 /* this must come after including "trace.h" */
44 #include <shlobj.h>
45
46 static int get_allocation_granularity(void)
47 {
48 SYSTEM_INFO system_info;
49
50 GetSystemInfo(&system_info);
51 return system_info.dwAllocationGranularity;
52 }
53
54 void *qemu_anon_ram_alloc(size_t size, uint64_t *align, bool shared,
55 bool noreserve)
56 {
57 void *ptr;
58
59 if (noreserve) {
60 /*
61 * We need a MEM_COMMIT before accessing any memory in a MEM_RESERVE
62 * area; we cannot easily mimic POSIX MAP_NORESERVE semantics.
63 */
64 error_report("Skipping reservation of swap space is not supported.");
65 return NULL;
66 }
67
68 ptr = VirtualAlloc(NULL, size, MEM_COMMIT, PAGE_READWRITE);
69 trace_qemu_anon_ram_alloc(size, ptr);
70
71 if (ptr && align) {
72 *align = MAX(get_allocation_granularity(), getpagesize());
73 }
74 return ptr;
75 }
76
77 void qemu_anon_ram_free(void *ptr, size_t size)
78 {
79 trace_qemu_anon_ram_free(ptr, size);
80 if (ptr) {
81 VirtualFree(ptr, 0, MEM_RELEASE);
82 }
83 }
84
85 #ifndef _POSIX_THREAD_SAFE_FUNCTIONS
86 /* FIXME: add proper locking */
87 struct tm *gmtime_r(const time_t *timep, struct tm *result)
88 {
89 struct tm *p = gmtime(timep);
90 memset(result, 0, sizeof(*result));
91 if (p) {
92 *result = *p;
93 p = result;
94 }
95 return p;
96 }
97
98 /* FIXME: add proper locking */
99 struct tm *localtime_r(const time_t *timep, struct tm *result)
100 {
101 struct tm *p = localtime(timep);
102 memset(result, 0, sizeof(*result));
103 if (p) {
104 *result = *p;
105 p = result;
106 }
107 return p;
108 }
109 #endif /* _POSIX_THREAD_SAFE_FUNCTIONS */
110
111 static int socket_error(void)
112 {
113 switch (WSAGetLastError()) {
114 case 0:
115 return 0;
116 case WSAEINTR:
117 return EINTR;
118 case WSAEINVAL:
119 return EINVAL;
120 case WSA_INVALID_HANDLE:
121 return EBADF;
122 case WSA_NOT_ENOUGH_MEMORY:
123 return ENOMEM;
124 case WSA_INVALID_PARAMETER:
125 return EINVAL;
126 case WSAENAMETOOLONG:
127 return ENAMETOOLONG;
128 case WSAENOTEMPTY:
129 return ENOTEMPTY;
130 case WSAEWOULDBLOCK:
131 /* not using EWOULDBLOCK as we don't want code to have
132 * to check both EWOULDBLOCK and EAGAIN */
133 return EAGAIN;
134 case WSAEINPROGRESS:
135 return EINPROGRESS;
136 case WSAEALREADY:
137 return EALREADY;
138 case WSAENOTSOCK:
139 return ENOTSOCK;
140 case WSAEDESTADDRREQ:
141 return EDESTADDRREQ;
142 case WSAEMSGSIZE:
143 return EMSGSIZE;
144 case WSAEPROTOTYPE:
145 return EPROTOTYPE;
146 case WSAENOPROTOOPT:
147 return ENOPROTOOPT;
148 case WSAEPROTONOSUPPORT:
149 return EPROTONOSUPPORT;
150 case WSAEOPNOTSUPP:
151 return EOPNOTSUPP;
152 case WSAEAFNOSUPPORT:
153 return EAFNOSUPPORT;
154 case WSAEADDRINUSE:
155 return EADDRINUSE;
156 case WSAEADDRNOTAVAIL:
157 return EADDRNOTAVAIL;
158 case WSAENETDOWN:
159 return ENETDOWN;
160 case WSAENETUNREACH:
161 return ENETUNREACH;
162 case WSAENETRESET:
163 return ENETRESET;
164 case WSAECONNABORTED:
165 return ECONNABORTED;
166 case WSAECONNRESET:
167 return ECONNRESET;
168 case WSAENOBUFS:
169 return ENOBUFS;
170 case WSAEISCONN:
171 return EISCONN;
172 case WSAENOTCONN:
173 return ENOTCONN;
174 case WSAETIMEDOUT:
175 return ETIMEDOUT;
176 case WSAECONNREFUSED:
177 return ECONNREFUSED;
178 case WSAELOOP:
179 return ELOOP;
180 case WSAEHOSTUNREACH:
181 return EHOSTUNREACH;
182 default:
183 return EIO;
184 }
185 }
186
187 void qemu_socket_set_block(int fd)
188 {
189 unsigned long opt = 0;
190 WSAEventSelect(fd, NULL, 0);
191 ioctlsocket(fd, FIONBIO, &opt);
192 }
193
194 int qemu_socket_try_set_nonblock(int fd)
195 {
196 unsigned long opt = 1;
197 if (ioctlsocket(fd, FIONBIO, &opt) != NO_ERROR) {
198 return -socket_error();
199 }
200 return 0;
201 }
202
203 void qemu_socket_set_nonblock(int fd)
204 {
205 (void)qemu_socket_try_set_nonblock(fd);
206 }
207
208 int socket_set_fast_reuse(int fd)
209 {
210 /* Enabling the reuse of an endpoint that was used by a socket still in
211 * TIME_WAIT state is usually performed by setting SO_REUSEADDR. On Windows
212 * fast reuse is the default and SO_REUSEADDR does strange things. So we
213 * don't have to do anything here. More info can be found at:
214 * http://msdn.microsoft.com/en-us/library/windows/desktop/ms740621.aspx */
215 return 0;
216 }
217
218 int inet_aton(const char *cp, struct in_addr *ia)
219 {
220 uint32_t addr = inet_addr(cp);
221 if (addr == 0xffffffff) {
222 return 0;
223 }
224 ia->s_addr = addr;
225 return 1;
226 }
227
228 void qemu_set_cloexec(int fd)
229 {
230 }
231
232 int qemu_get_thread_id(void)
233 {
234 return GetCurrentThreadId();
235 }
236
237 char *
238 qemu_get_local_state_dir(void)
239 {
240 HRESULT result;
241 char base_path[MAX_PATH+1] = "";
242
243 result = SHGetFolderPath(NULL, CSIDL_COMMON_APPDATA, NULL,
244 /* SHGFP_TYPE_CURRENT */ 0, base_path);
245 if (result != S_OK) {
246 /* misconfigured environment */
247 g_critical("CSIDL_COMMON_APPDATA unavailable: %ld", (long)result);
248 abort();
249 }
250 return g_strdup(base_path);
251 }
252
253 void qemu_set_tty_echo(int fd, bool echo)
254 {
255 HANDLE handle = (HANDLE)_get_osfhandle(fd);
256 DWORD dwMode = 0;
257
258 if (handle == INVALID_HANDLE_VALUE) {
259 return;
260 }
261
262 GetConsoleMode(handle, &dwMode);
263
264 if (echo) {
265 SetConsoleMode(handle, dwMode | ENABLE_ECHO_INPUT | ENABLE_LINE_INPUT);
266 } else {
267 SetConsoleMode(handle,
268 dwMode & ~(ENABLE_ECHO_INPUT | ENABLE_LINE_INPUT));
269 }
270 }
271
272 int getpagesize(void)
273 {
274 SYSTEM_INFO system_info;
275
276 GetSystemInfo(&system_info);
277 return system_info.dwPageSize;
278 }
279
280 void os_mem_prealloc(int fd, char *area, size_t memory, int smp_cpus,
281 Error **errp)
282 {
283 int i;
284 size_t pagesize = qemu_real_host_page_size();
285
286 memory = (memory + pagesize - 1) & -pagesize;
287 for (i = 0; i < memory / pagesize; i++) {
288 memset(area + pagesize * i, 0, 1);
289 }
290 }
291
292 char *qemu_get_pid_name(pid_t pid)
293 {
294 /* XXX Implement me */
295 abort();
296 }
297
298
299 pid_t qemu_fork(Error **errp)
300 {
301 errno = ENOSYS;
302 error_setg_errno(errp, errno,
303 "cannot fork child process");
304 return -1;
305 }
306
307
308 #undef connect
309 int qemu_connect_wrap(int sockfd, const struct sockaddr *addr,
310 socklen_t addrlen)
311 {
312 int ret;
313 ret = connect(sockfd, addr, addrlen);
314 if (ret < 0) {
315 if (WSAGetLastError() == WSAEWOULDBLOCK) {
316 errno = EINPROGRESS;
317 } else {
318 errno = socket_error();
319 }
320 }
321 return ret;
322 }
323
324
325 #undef listen
326 int qemu_listen_wrap(int sockfd, int backlog)
327 {
328 int ret;
329 ret = listen(sockfd, backlog);
330 if (ret < 0) {
331 errno = socket_error();
332 }
333 return ret;
334 }
335
336
337 #undef bind
338 int qemu_bind_wrap(int sockfd, const struct sockaddr *addr,
339 socklen_t addrlen)
340 {
341 int ret;
342 ret = bind(sockfd, addr, addrlen);
343 if (ret < 0) {
344 errno = socket_error();
345 }
346 return ret;
347 }
348
349
350 #undef socket
351 int qemu_socket_wrap(int domain, int type, int protocol)
352 {
353 int ret;
354 ret = socket(domain, type, protocol);
355 if (ret < 0) {
356 errno = socket_error();
357 }
358 return ret;
359 }
360
361
362 #undef accept
363 int qemu_accept_wrap(int sockfd, struct sockaddr *addr,
364 socklen_t *addrlen)
365 {
366 int ret;
367 ret = accept(sockfd, addr, addrlen);
368 if (ret < 0) {
369 errno = socket_error();
370 }
371 return ret;
372 }
373
374
375 #undef shutdown
376 int qemu_shutdown_wrap(int sockfd, int how)
377 {
378 int ret;
379 ret = shutdown(sockfd, how);
380 if (ret < 0) {
381 errno = socket_error();
382 }
383 return ret;
384 }
385
386
387 #undef ioctlsocket
388 int qemu_ioctlsocket_wrap(int fd, int req, void *val)
389 {
390 int ret;
391 ret = ioctlsocket(fd, req, val);
392 if (ret < 0) {
393 errno = socket_error();
394 }
395 return ret;
396 }
397
398
399 #undef closesocket
400 int qemu_closesocket_wrap(int fd)
401 {
402 int ret;
403 ret = closesocket(fd);
404 if (ret < 0) {
405 errno = socket_error();
406 }
407 return ret;
408 }
409
410
411 #undef getsockopt
412 int qemu_getsockopt_wrap(int sockfd, int level, int optname,
413 void *optval, socklen_t *optlen)
414 {
415 int ret;
416 ret = getsockopt(sockfd, level, optname, optval, optlen);
417 if (ret < 0) {
418 errno = socket_error();
419 }
420 return ret;
421 }
422
423
424 #undef setsockopt
425 int qemu_setsockopt_wrap(int sockfd, int level, int optname,
426 const void *optval, socklen_t optlen)
427 {
428 int ret;
429 ret = setsockopt(sockfd, level, optname, optval, optlen);
430 if (ret < 0) {
431 errno = socket_error();
432 }
433 return ret;
434 }
435
436
437 #undef getpeername
438 int qemu_getpeername_wrap(int sockfd, struct sockaddr *addr,
439 socklen_t *addrlen)
440 {
441 int ret;
442 ret = getpeername(sockfd, addr, addrlen);
443 if (ret < 0) {
444 errno = socket_error();
445 }
446 return ret;
447 }
448
449
450 #undef getsockname
451 int qemu_getsockname_wrap(int sockfd, struct sockaddr *addr,
452 socklen_t *addrlen)
453 {
454 int ret;
455 ret = getsockname(sockfd, addr, addrlen);
456 if (ret < 0) {
457 errno = socket_error();
458 }
459 return ret;
460 }
461
462
463 #undef send
464 ssize_t qemu_send_wrap(int sockfd, const void *buf, size_t len, int flags)
465 {
466 int ret;
467 ret = send(sockfd, buf, len, flags);
468 if (ret < 0) {
469 errno = socket_error();
470 }
471 return ret;
472 }
473
474
475 #undef sendto
476 ssize_t qemu_sendto_wrap(int sockfd, const void *buf, size_t len, int flags,
477 const struct sockaddr *addr, socklen_t addrlen)
478 {
479 int ret;
480 ret = sendto(sockfd, buf, len, flags, addr, addrlen);
481 if (ret < 0) {
482 errno = socket_error();
483 }
484 return ret;
485 }
486
487
488 #undef recv
489 ssize_t qemu_recv_wrap(int sockfd, void *buf, size_t len, int flags)
490 {
491 int ret;
492 ret = recv(sockfd, buf, len, flags);
493 if (ret < 0) {
494 errno = socket_error();
495 }
496 return ret;
497 }
498
499
500 #undef recvfrom
501 ssize_t qemu_recvfrom_wrap(int sockfd, void *buf, size_t len, int flags,
502 struct sockaddr *addr, socklen_t *addrlen)
503 {
504 int ret;
505 ret = recvfrom(sockfd, buf, len, flags, addr, addrlen);
506 if (ret < 0) {
507 errno = socket_error();
508 }
509 return ret;
510 }
511
512 bool qemu_write_pidfile(const char *filename, Error **errp)
513 {
514 char buffer[128];
515 int len;
516 HANDLE file;
517 OVERLAPPED overlap;
518 BOOL ret;
519 memset(&overlap, 0, sizeof(overlap));
520
521 file = CreateFile(filename, GENERIC_WRITE, FILE_SHARE_READ, NULL,
522 OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
523
524 if (file == INVALID_HANDLE_VALUE) {
525 error_setg(errp, "Failed to create PID file");
526 return false;
527 }
528 len = snprintf(buffer, sizeof(buffer), FMT_pid "\n", (pid_t)getpid());
529 ret = WriteFile(file, (LPCVOID)buffer, (DWORD)len,
530 NULL, &overlap);
531 CloseHandle(file);
532 if (ret == 0) {
533 error_setg(errp, "Failed to write PID file");
534 return false;
535 }
536 return true;
537 }
538
539 size_t qemu_get_host_physmem(void)
540 {
541 MEMORYSTATUSEX statex;
542 statex.dwLength = sizeof(statex);
543
544 if (GlobalMemoryStatusEx(&statex)) {
545 return statex.ullTotalPhys;
546 }
547 return 0;
548 }
549
550 int qemu_msync(void *addr, size_t length, int fd)
551 {
552 /**
553 * Perform the sync based on the file descriptor
554 * The sync range will most probably be wider than the one
555 * requested - but it will still get the job done
556 */
557 return qemu_fdatasync(fd);
558 }