]> git.proxmox.com Git - qemu.git/blame - osdep.c
Define OS-dependent qemu_getpagesize() (Hollis Blanchard)
[qemu.git] / osdep.c
CommitLineData
ea88812f
FB
1/*
2 * QEMU low level functions
5fafdf24 3 *
ea88812f 4 * Copyright (c) 2003 Fabrice Bellard
5fafdf24 5 *
ea88812f
FB
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>
ea88812f
FB
28#include <errno.h>
29#include <unistd.h>
aa26bb2d 30#include <fcntl.h>
605686cd
TS
31#ifdef HOST_SOLARIS
32#include <sys/types.h>
33#include <sys/statvfs.h>
34#endif
ea88812f 35
87ecb68b
PB
36#include "qemu-common.h"
37#include "sysemu.h"
ea88812f 38
6e4255f6 39#ifdef _WIN32
4fddf62a 40#define WIN32_LEAN_AND_MEAN
6e4255f6
FB
41#include <windows.h>
42#elif defined(_BSD)
194884dd
FB
43#include <stdlib.h>
44#else
49b470eb 45#include <malloc.h>
194884dd 46#endif
49b470eb 47
03ff3ca3
AL
48#include "qemu_socket.h"
49
6e4255f6 50#if defined(_WIN32)
33f00271
AZ
51void *qemu_memalign(size_t alignment, size_t size)
52{
53 return VirtualAlloc(NULL, size, MEM_COMMIT, PAGE_READWRITE);
54}
6e4255f6
FB
55
56void *qemu_vmalloc(size_t size)
57{
58 /* FIXME: this is not exactly optimal solution since VirtualAlloc
59 has 64Kb granularity, but at least it guarantees us that the
60 memory is page aligned. */
61 return VirtualAlloc(NULL, size, MEM_COMMIT, PAGE_READWRITE);
62}
63
64void qemu_vfree(void *ptr)
65{
66 VirtualFree(ptr, 0, MEM_RELEASE);
67}
68
15ed71ba
AL
69long qemu_getpagesize(void)
70{
71 SYSTEM_INFO system_info;
72
73 GetSystemInfo(&system_info);
74 return system_info.dwPageSize;
75}
76
6cb7ee85
PB
77#else
78
79#if defined(USE_KQEMU)
49b470eb 80
128ab2ff
BS
81#ifdef __OpenBSD__
82#include <sys/param.h>
83#include <sys/types.h>
84#include <sys/mount.h>
85#else
6bae7ed8 86#include <sys/vfs.h>
128ab2ff
BS
87#endif
88
49b470eb
FB
89#include <sys/mman.h>
90#include <fcntl.h>
91
9596ebb7 92static void *kqemu_vmalloc(size_t size)
49b470eb
FB
93{
94 static int phys_ram_fd = -1;
95 static int phys_ram_size = 0;
128ab2ff
BS
96 void *ptr;
97
98#ifdef __OpenBSD__ /* no need (?) for a dummy file on OpenBSD */
99 int map_anon = MAP_ANON;
100#else
101 int map_anon = 0;
49b470eb
FB
102 const char *tmpdir;
103 char phys_ram_file[1024];
605686cd
TS
104#ifdef HOST_SOLARIS
105 struct statvfs stfs;
106#else
6bae7ed8 107 struct statfs stfs;
605686cd 108#endif
49b470eb
FB
109
110 if (phys_ram_fd < 0) {
111 tmpdir = getenv("QEMU_TMPDIR");
112 if (!tmpdir)
605686cd
TS
113#ifdef HOST_SOLARIS
114 tmpdir = "/tmp";
115 if (statvfs(tmpdir, &stfs) == 0) {
116#else
49b470eb 117 tmpdir = "/dev/shm";
6bae7ed8 118 if (statfs(tmpdir, &stfs) == 0) {
605686cd 119#endif
6bae7ed8
FB
120 int64_t free_space;
121 int ram_mb;
122
6bae7ed8
FB
123 free_space = (int64_t)stfs.f_bavail * stfs.f_bsize;
124 if ((ram_size + 8192 * 1024) >= free_space) {
125 ram_mb = (ram_size / (1024 * 1024));
5fafdf24 126 fprintf(stderr,
6bae7ed8
FB
127 "You do not have enough space in '%s' for the %d MB of QEMU virtual RAM.\n",
128 tmpdir, ram_mb);
129 if (strcmp(tmpdir, "/dev/shm") == 0) {
130 fprintf(stderr, "To have more space available provided you have enough RAM and swap, do as root:\n"
2520c665 131 "mount -o remount,size=%dm /dev/shm\n",
6bae7ed8
FB
132 ram_mb + 16);
133 } else {
5fafdf24 134 fprintf(stderr,
6bae7ed8
FB
135 "Use the '-m' option of QEMU to diminish the amount of virtual RAM or use the\n"
136 "QEMU_TMPDIR environment variable to set another directory where the QEMU\n"
137 "temporary RAM file will be opened.\n");
138 }
6cb7ee85 139 fprintf(stderr, "Or disable the accelerator module with -no-kqemu\n");
6bae7ed8
FB
140 exit(1);
141 }
142 }
5fafdf24 143 snprintf(phys_ram_file, sizeof(phys_ram_file), "%s/qemuXXXXXX",
49b470eb 144 tmpdir);
243a273e
FB
145 phys_ram_fd = mkstemp(phys_ram_file);
146 if (phys_ram_fd < 0) {
5fafdf24 147 fprintf(stderr,
49b470eb
FB
148 "warning: could not create temporary file in '%s'.\n"
149 "Use QEMU_TMPDIR to select a directory in a tmpfs filesystem.\n"
150 "Using '/tmp' as fallback.\n",
151 tmpdir);
5fafdf24 152 snprintf(phys_ram_file, sizeof(phys_ram_file), "%s/qemuXXXXXX",
49b470eb 153 "/tmp");
243a273e
FB
154 phys_ram_fd = mkstemp(phys_ram_file);
155 if (phys_ram_fd < 0) {
5fafdf24 156 fprintf(stderr, "Could not create temporary memory file '%s'\n",
49b470eb
FB
157 phys_ram_file);
158 exit(1);
159 }
160 }
49b470eb
FB
161 unlink(phys_ram_file);
162 }
163 size = (size + 4095) & ~4095;
164 ftruncate(phys_ram_fd, phys_ram_size + size);
128ab2ff 165#endif /* !__OpenBSD__ */
5fafdf24
TS
166 ptr = mmap(NULL,
167 size,
128ab2ff 168 PROT_WRITE | PROT_READ, map_anon | MAP_SHARED,
49b470eb
FB
169 phys_ram_fd, phys_ram_size);
170 if (ptr == MAP_FAILED) {
171 fprintf(stderr, "Could not map physical memory\n");
172 exit(1);
173 }
174 phys_ram_size += size;
175 return ptr;
176}
177
9596ebb7 178static void kqemu_vfree(void *ptr)
49b470eb
FB
179{
180 /* may be useful some day, but currently we do not need to free */
181}
182
6cb7ee85 183#endif
49b470eb 184
33f00271
AZ
185void *qemu_memalign(size_t alignment, size_t size)
186{
187#if defined(_POSIX_C_SOURCE)
188 int ret;
189 void *ptr;
190 ret = posix_memalign(&ptr, alignment, size);
191 if (ret != 0)
192 return NULL;
193 return ptr;
194#elif defined(_BSD)
195 return valloc(size);
196#else
197 return memalign(alignment, size);
198#endif
199}
200
15ed71ba
AL
201long qemu_getpagesize(void)
202{
203 return sysconf(_SC_PAGESIZE);
204}
205
49b470eb
FB
206/* alloc shared memory pages */
207void *qemu_vmalloc(size_t size)
208{
6cb7ee85
PB
209#if defined(USE_KQEMU)
210 if (kqemu_allowed)
211 return kqemu_vmalloc(size);
212#endif
49b470eb
FB
213#ifdef _BSD
214 return valloc(size);
215#else
216 return memalign(4096, size);
217#endif
218}
219
220void qemu_vfree(void *ptr)
221{
6cb7ee85
PB
222#if defined(USE_KQEMU)
223 if (kqemu_allowed)
224 kqemu_vfree(ptr);
225#endif
49b470eb
FB
226 free(ptr);
227}
228
229#endif
230
aa26bb2d
TS
231int qemu_create_pidfile(const char *filename)
232{
233 char buffer[128];
234 int len;
235#ifndef _WIN32
236 int fd;
237
238 fd = open(filename, O_RDWR | O_CREAT, 0600);
239 if (fd == -1)
240 return -1;
241
242 if (lockf(fd, F_TLOCK, 0) == -1)
243 return -1;
244
245 len = snprintf(buffer, sizeof(buffer), "%ld\n", (long)getpid());
246 if (write(fd, buffer, len) != len)
247 return -1;
248#else
249 HANDLE file;
250 DWORD flags;
251 OVERLAPPED overlap;
252 BOOL ret;
253
254 /* Open for writing with no sharing. */
5fafdf24 255 file = CreateFile(filename, GENERIC_WRITE, 0, NULL,
aa26bb2d
TS
256 OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
257
258 if (file == INVALID_HANDLE_VALUE)
259 return -1;
260
261 flags = LOCKFILE_EXCLUSIVE_LOCK | LOCKFILE_FAIL_IMMEDIATELY;
262 overlap.hEvent = 0;
263 /* Lock 1 byte. */
264 ret = LockFileEx(file, flags, 0, 0, 1, &overlap);
265 if (ret == 0)
266 return -1;
267
268 /* Write PID to file. */
269 len = snprintf(buffer, sizeof(buffer), "%ld\n", (long)getpid());
5fafdf24 270 ret = WriteFileEx(file, (LPCVOID)buffer, (DWORD)len,
aa26bb2d
TS
271 &overlap, NULL);
272 if (ret == 0)
273 return -1;
274#endif
275 return 0;
276}
29b3a662
PB
277
278#ifdef _WIN32
279
280/* Offset between 1/1/1601 and 1/1/1970 in 100 nanosec units */
281#define _W32_FT_OFFSET (116444736000000000ULL)
282
283int qemu_gettimeofday(qemu_timeval *tp)
284{
285 union {
286 unsigned long long ns100; /*time since 1 Jan 1601 in 100ns units */
287 FILETIME ft;
288 } _now;
289
290 if(tp)
291 {
292 GetSystemTimeAsFileTime (&_now.ft);
293 tp->tv_usec=(long)((_now.ns100 / 10ULL) % 1000000ULL );
294 tp->tv_sec= (long)((_now.ns100 - _W32_FT_OFFSET) / 10000000ULL);
295 }
296 /* Always return 0 as per Open Group Base Specifications Issue 6.
297 Do not set errno on error. */
298 return 0;
299}
300#endif /* _WIN32 */
03ff3ca3
AL
301
302
303#ifdef _WIN32
304void socket_set_nonblock(int fd)
305{
306 unsigned long opt = 1;
307 ioctlsocket(fd, FIONBIO, &opt);
308}
309
310int inet_aton(const char *cp, struct in_addr *ia)
311{
312 uint32_t addr = inet_addr(cp);
313 if (addr == 0xffffffff)
314 return 0;
315 ia->s_addr = addr;
316 return 1;
317}
318#else
319void socket_set_nonblock(int fd)
320{
321 int f;
322 f = fcntl(fd, F_GETFL);
323 fcntl(fd, F_SETFL, f | O_NONBLOCK);
324}
325#endif