blob: 49193e9b89c46545a652108e4ce10d26d88a8b45 [file] [log] [blame]
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -08001/*
2 * QEMU low level functions
3 *
4 * Copyright (c) 2003 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24#include <stdlib.h>
25#include <stdio.h>
26#include <stdarg.h>
27#include <string.h>
28#include <errno.h>
29#include <unistd.h>
30#include <fcntl.h>
31#ifdef HOST_SOLARIS
32#include <sys/types.h>
33#include <sys/statvfs.h>
34#endif
35
36#include "qemu-common.h"
37#include "sysemu.h"
38
39#ifdef _WIN32
40#define WIN32_LEAN_AND_MEAN
41#include <windows.h>
42#elif defined(_BSD)
43#include <stdlib.h>
44#else
45#include <malloc.h>
46#endif
47
48
49#if defined(_WIN32)
50void *qemu_memalign(size_t alignment, size_t size)
51{
52 return VirtualAlloc(NULL, size, MEM_COMMIT, PAGE_READWRITE);
53}
54
55void *qemu_vmalloc(size_t size)
56{
57 /* FIXME: this is not exactly optimal solution since VirtualAlloc
58 has 64Kb granularity, but at least it guarantees us that the
59 memory is page aligned. */
60 return VirtualAlloc(NULL, size, MEM_COMMIT, PAGE_READWRITE);
61}
62
63void qemu_vfree(void *ptr)
64{
65 VirtualFree(ptr, 0, MEM_RELEASE);
66}
67
68#else
69
70#if defined(USE_KQEMU)
71
72#ifdef __OpenBSD__
73#include <sys/param.h>
74#include <sys/types.h>
75#include <sys/mount.h>
76#else
77#include <sys/vfs.h>
78#endif
79
80#include <sys/mman.h>
81#include <fcntl.h>
82
83static void *kqemu_vmalloc(size_t size)
84{
85 static int phys_ram_fd = -1;
86 static int phys_ram_size = 0;
87 void *ptr;
88
89#ifdef __OpenBSD__ /* no need (?) for a dummy file on OpenBSD */
90 int map_anon = MAP_ANON;
91#else
92 int map_anon = 0;
93 const char *tmpdir;
94 char phys_ram_file[1024];
95#ifdef HOST_SOLARIS
96 struct statvfs stfs;
97#else
98 struct statfs stfs;
99#endif
100
101 if (phys_ram_fd < 0) {
102 tmpdir = getenv("QEMU_TMPDIR");
103 if (!tmpdir)
104#ifdef HOST_SOLARIS
105 tmpdir = "/tmp";
106 if (statvfs(tmpdir, &stfs) == 0) {
107#else
108 tmpdir = "/dev/shm";
109 if (statfs(tmpdir, &stfs) == 0) {
110#endif
111 int64_t free_space;
112 int ram_mb;
113
114 free_space = (int64_t)stfs.f_bavail * stfs.f_bsize;
115 if ((ram_size + 8192 * 1024) >= free_space) {
116 ram_mb = (ram_size / (1024 * 1024));
117 fprintf(stderr,
118 "You do not have enough space in '%s' for the %d MB of QEMU virtual RAM.\n",
119 tmpdir, ram_mb);
120 if (strcmp(tmpdir, "/dev/shm") == 0) {
121 fprintf(stderr, "To have more space available provided you have enough RAM and swap, do as root:\n"
122 "mount -o remount,size=%dm /dev/shm\n",
123 ram_mb + 16);
124 } else {
125 fprintf(stderr,
126 "Use the '-m' option of QEMU to diminish the amount of virtual RAM or use the\n"
127 "QEMU_TMPDIR environment variable to set another directory where the QEMU\n"
128 "temporary RAM file will be opened.\n");
129 }
130 fprintf(stderr, "Or disable the accelerator module with -no-kqemu\n");
131 exit(1);
132 }
133 }
134 snprintf(phys_ram_file, sizeof(phys_ram_file), "%s/qemuXXXXXX",
135 tmpdir);
136 phys_ram_fd = mkstemp(phys_ram_file);
137 if (phys_ram_fd < 0) {
138 fprintf(stderr,
139 "warning: could not create temporary file in '%s'.\n"
140 "Use QEMU_TMPDIR to select a directory in a tmpfs filesystem.\n"
141 "Using '/tmp' as fallback.\n",
142 tmpdir);
143 snprintf(phys_ram_file, sizeof(phys_ram_file), "%s/qemuXXXXXX",
144 "/tmp");
145 phys_ram_fd = mkstemp(phys_ram_file);
146 if (phys_ram_fd < 0) {
147 fprintf(stderr, "Could not create temporary memory file '%s'\n",
148 phys_ram_file);
149 exit(1);
150 }
151 }
152 unlink(phys_ram_file);
153 }
154 size = (size + 4095) & ~4095;
155 ftruncate(phys_ram_fd, phys_ram_size + size);
156#endif /* !__OpenBSD__ */
157 ptr = mmap(NULL,
158 size,
159 PROT_WRITE | PROT_READ, map_anon | MAP_SHARED,
160 phys_ram_fd, phys_ram_size);
161 if (ptr == MAP_FAILED) {
162 fprintf(stderr, "Could not map physical memory\n");
163 exit(1);
164 }
165 phys_ram_size += size;
166 return ptr;
167}
168
169static void kqemu_vfree(void *ptr)
170{
171 /* may be useful some day, but currently we do not need to free */
172}
173
174#endif
175
176void *qemu_memalign(size_t alignment, size_t size)
177{
178#if defined(_POSIX_C_SOURCE)
179 int ret;
180 void *ptr;
181 ret = posix_memalign(&ptr, alignment, size);
182 if (ret != 0)
183 return NULL;
184 return ptr;
185#elif defined(_BSD)
186 return valloc(size);
187#else
188 return memalign(alignment, size);
189#endif
190}
191
192/* alloc shared memory pages */
193void *qemu_vmalloc(size_t size)
194{
195#if defined(USE_KQEMU)
196 if (kqemu_allowed)
197 return kqemu_vmalloc(size);
198#endif
199#ifdef _BSD
200 return valloc(size);
201#else
202 return memalign(4096, size);
203#endif
204}
205
206void qemu_vfree(void *ptr)
207{
208#if defined(USE_KQEMU)
209 if (kqemu_allowed)
210 kqemu_vfree(ptr);
211#endif
212 free(ptr);
213}
214
215#endif
216
217int qemu_create_pidfile(const char *filename)
218{
219 char buffer[128];
220 int len;
221#ifndef _WIN32
222 int fd;
223
224 fd = open(filename, O_RDWR | O_CREAT, 0600);
225 if (fd == -1)
226 return -1;
227
228 if (lockf(fd, F_TLOCK, 0) == -1)
229 return -1;
230
231 len = snprintf(buffer, sizeof(buffer), "%ld\n", (long)getpid());
232 if (write(fd, buffer, len) != len)
233 return -1;
234#else
235 HANDLE file;
236 DWORD flags;
237 OVERLAPPED overlap;
238 BOOL ret;
239
240 /* Open for writing with no sharing. */
241 file = CreateFile(filename, GENERIC_WRITE, 0, NULL,
242 OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
243
244 if (file == INVALID_HANDLE_VALUE)
245 return -1;
246
247 flags = LOCKFILE_EXCLUSIVE_LOCK | LOCKFILE_FAIL_IMMEDIATELY;
248 overlap.hEvent = 0;
249 /* Lock 1 byte. */
250 ret = LockFileEx(file, flags, 0, 0, 1, &overlap);
251 if (ret == 0)
252 return -1;
253
254 /* Write PID to file. */
255 len = snprintf(buffer, sizeof(buffer), "%ld\n", (long)getpid());
256 ret = WriteFileEx(file, (LPCVOID)buffer, (DWORD)len,
257 &overlap, NULL);
258 if (ret == 0)
259 return -1;
260#endif
261 return 0;
262}
263
264#ifdef _WIN32
265
266/* Offset between 1/1/1601 and 1/1/1970 in 100 nanosec units */
267#define _W32_FT_OFFSET (116444736000000000ULL)
268
269int qemu_gettimeofday(qemu_timeval *tp)
270{
271 union {
272 unsigned long long ns100; /*time since 1 Jan 1601 in 100ns units */
273 FILETIME ft;
274 } _now;
275
276 if(tp)
277 {
278 GetSystemTimeAsFileTime (&_now.ft);
279 tp->tv_usec=(long)((_now.ns100 / 10ULL) % 1000000ULL );
280 tp->tv_sec= (long)((_now.ns100 - _W32_FT_OFFSET) / 10000000ULL);
281 }
282 /* Always return 0 as per Open Group Base Specifications Issue 6.
283 Do not set errno on error. */
284 return 0;
285}
286#endif /* _WIN32 */
287
288