blob: 586a7c7d49374002fef4a7671262749d1dcb9bd2 [file] [log] [blame]
Jes Sorensen19113502010-06-10 11:42:17 +02001/*
2 * os-win32.c
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 * Copyright (c) 2010 Red Hat, Inc.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
24 */
Peter Maydelld38ea872016-01-29 17:50:05 +000025#include "qemu/osdep.h"
Jes Sorensen19113502010-06-10 11:42:17 +020026#include <windows.h>
Paolo Bonzini0727b862013-02-20 14:43:31 +010027#include <mmsystem.h>
Paolo Bonzini9c17d612012-12-17 18:20:04 +010028#include "sysemu/sysemu.h"
Jes Sorensen59a52642010-06-10 11:42:25 +020029#include "qemu-options.h"
Jes Sorensen19113502010-06-10 11:42:17 +020030
31/***********************************************************/
Stefan Weil0a1574b2010-07-01 00:47:49 +000032/* Functions missing in mingw */
33
34int setenv(const char *name, const char *value, int overwrite)
35{
36 int result = 0;
37 if (overwrite || !getenv(name)) {
38 size_t length = strlen(name) + strlen(value) + 2;
Anthony Liguori7267c092011-08-20 22:09:37 -050039 char *string = g_malloc(length);
Stefan Weil0a1574b2010-07-01 00:47:49 +000040 snprintf(string, length, "%s=%s", name, value);
41 result = putenv(string);
Zhi Hui Li91a9ece2011-11-24 16:27:52 +080042
43 /* Windows takes a copy and does not continue to use our string.
44 * Therefore it can be safely freed on this platform. POSIX code
45 * typically has to leak the string because according to the spec it
46 * becomes part of the environment.
47 */
48 g_free(string);
Stefan Weil0a1574b2010-07-01 00:47:49 +000049 }
50 return result;
51}
52
Jes Sorensen69bd73b2010-06-10 11:42:20 +020053static BOOL WINAPI qemu_ctrl_handler(DWORD type)
54{
Eric Blakecf83f142017-05-15 16:41:13 -050055 qemu_system_shutdown_request(SHUTDOWN_CAUSE_HOST_SIGNAL);
Pavel Dovgalukb75a0282012-05-30 10:08:04 +040056 /* Windows 7 kills application when the function returns.
57 Sleep here to give QEMU a try for closing.
58 Sleep period is 10000ms because Windows kills the program
59 after 10 seconds anyway. */
60 Sleep(10000);
61
Jes Sorensen69bd73b2010-06-10 11:42:20 +020062 return TRUE;
63}
64
Paolo Bonzini0727b862013-02-20 14:43:31 +010065static TIMECAPS mm_tc;
66
67static void os_undo_timer_resolution(void)
68{
69 timeEndPeriod(mm_tc.wPeriodMin);
70}
71
Jes Sorensenfe98ac12010-06-10 11:42:21 +020072void os_setup_early_signal_handling(void)
Jes Sorensen69bd73b2010-06-10 11:42:20 +020073{
Jes Sorensen69bd73b2010-06-10 11:42:20 +020074 SetConsoleCtrlHandler(qemu_ctrl_handler, TRUE);
Paolo Bonzini0727b862013-02-20 14:43:31 +010075 timeGetDevCaps(&mm_tc, sizeof(mm_tc));
76 timeBeginPeriod(mm_tc.wPeriodMin);
77 atexit(os_undo_timer_resolution);
Jes Sorensen69bd73b2010-06-10 11:42:20 +020078}
Jes Sorensen61705402010-06-10 11:42:23 +020079
80/* Look for support files in the same directory as the executable. */
Fam Zheng10f5bff2014-02-10 14:48:51 +080081char *os_find_datadir(void)
Jes Sorensen61705402010-06-10 11:42:23 +020082{
Fam Zheng10f5bff2014-02-10 14:48:51 +080083 return qemu_get_exec_dir();
Jes Sorensen61705402010-06-10 11:42:23 +020084}
Jes Sorensen59a52642010-06-10 11:42:25 +020085
Stefan Weil6650b712010-10-07 18:55:48 +020086void os_set_line_buffering(void)
87{
88 setbuf(stdout, NULL);
89 setbuf(stderr, NULL);
90}
91
Jes Sorensen59a52642010-06-10 11:42:25 +020092/*
93 * Parse OS specific command line options.
94 * return 0 if option handled, -1 otherwise
95 */
96void os_parse_cmd_args(int index, const char *optarg)
97{
98 return;
99}
Jes Sorenseneb505be2010-06-10 11:42:28 +0200100
Jes Sorensenbc4a9572010-10-26 10:39:25 +0200101int qemu_create_pidfile(const char *filename)
102{
103 char buffer[128];
104 int len;
105 HANDLE file;
106 OVERLAPPED overlap;
107 BOOL ret;
108 memset(&overlap, 0, sizeof(overlap));
109
110 file = CreateFile(filename, GENERIC_WRITE, FILE_SHARE_READ, NULL,
Fabien Chouteaubfc763f2011-11-07 15:36:14 +0100111 OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
Jes Sorensenbc4a9572010-10-26 10:39:25 +0200112
113 if (file == INVALID_HANDLE_VALUE) {
114 return -1;
115 }
Stefan Weil59ad3402011-07-15 21:38:14 +0200116 len = snprintf(buffer, sizeof(buffer), "%d\n", getpid());
Fabien Chouteaubfc763f2011-11-07 15:36:14 +0100117 ret = WriteFile(file, (LPCVOID)buffer, (DWORD)len,
118 NULL, &overlap);
119 CloseHandle(file);
Jes Sorensenbc4a9572010-10-26 10:39:25 +0200120 if (ret == 0) {
121 return -1;
122 }
123 return 0;
124}