device-assignment: Byte-wise ROM read
[qemu-kvm/stefanha.git] / osdep.c
blob2375a69df966342d8d6c51097e97178b1bea2fc9
1 /*
2 * QEMU low level functions
4 * Copyright (c) 2003 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
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>
32 /* Needed early for CONFIG_BSD etc. */
33 #include "config-host.h"
35 #ifdef CONFIG_SOLARIS
36 #include <sys/types.h>
37 #include <sys/statvfs.h>
38 #endif
40 #ifdef CONFIG_EVENTFD
41 #include <sys/eventfd.h>
42 #endif
44 #ifdef _WIN32
45 #include <windows.h>
46 #elif defined(CONFIG_BSD)
47 #include <stdlib.h>
48 #else
49 #include <malloc.h>
50 #endif
52 #include "qemu-common.h"
53 #include "sysemu.h"
54 #include "qemu_socket.h"
56 #if !defined(_POSIX_C_SOURCE) || defined(_WIN32) || defined(__sun__)
57 static void *oom_check(void *ptr)
59 if (ptr == NULL) {
60 #if defined(_WIN32)
61 fprintf(stderr, "Failed to allocate memory: %lu\n", GetLastError());
62 #else
63 fprintf(stderr, "Failed to allocate memory: %s\n", strerror(errno));
64 #endif
65 abort();
67 return ptr;
69 #endif
71 #if defined(_WIN32)
72 void *qemu_memalign(size_t alignment, size_t size)
74 if (!size) {
75 abort();
77 return oom_check(VirtualAlloc(NULL, size, MEM_COMMIT, PAGE_READWRITE));
80 void *qemu_vmalloc(size_t size)
82 /* FIXME: this is not exactly optimal solution since VirtualAlloc
83 has 64Kb granularity, but at least it guarantees us that the
84 memory is page aligned. */
85 if (!size) {
86 abort();
88 return oom_check(VirtualAlloc(NULL, size, MEM_COMMIT, PAGE_READWRITE));
91 void qemu_vfree(void *ptr)
93 VirtualFree(ptr, 0, MEM_RELEASE);
96 #else
98 void *qemu_memalign(size_t alignment, size_t size)
100 #if defined(_POSIX_C_SOURCE) && !defined(__sun__)
101 int ret;
102 void *ptr;
103 ret = posix_memalign(&ptr, alignment, size);
104 if (ret != 0) {
105 fprintf(stderr, "Failed to allocate %zu B: %s\n",
106 size, strerror(ret));
107 abort();
109 return ptr;
110 #elif defined(CONFIG_BSD)
111 return oom_check(valloc(size));
112 #else
113 return oom_check(memalign(alignment, size));
114 #endif
117 /* alloc shared memory pages */
118 void *qemu_vmalloc(size_t size)
120 #ifndef __ia64__
121 return qemu_memalign(getpagesize(), size);
122 #else
123 return qemu_memalign(65536, size);
124 #endif
127 void qemu_vfree(void *ptr)
129 free(ptr);
132 #endif
134 int qemu_create_pidfile(const char *filename)
136 char buffer[128];
137 int len;
138 #ifndef _WIN32
139 int fd;
141 fd = qemu_open(filename, O_RDWR | O_CREAT, 0600);
142 if (fd == -1)
143 return -1;
145 if (lockf(fd, F_TLOCK, 0) == -1)
146 return -1;
148 len = snprintf(buffer, sizeof(buffer), "%ld\n", (long)getpid());
149 if (write(fd, buffer, len) != len)
150 return -1;
151 #else
152 HANDLE file;
153 OVERLAPPED overlap;
154 BOOL ret;
155 memset(&overlap, 0, sizeof(overlap));
157 file = CreateFile(filename, GENERIC_WRITE, FILE_SHARE_READ, NULL,
158 OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
160 if (file == INVALID_HANDLE_VALUE)
161 return -1;
163 len = snprintf(buffer, sizeof(buffer), "%ld\n", (long)getpid());
164 ret = WriteFileEx(file, (LPCVOID)buffer, (DWORD)len,
165 &overlap, NULL);
166 if (ret == 0)
167 return -1;
168 #endif
169 return 0;
172 #ifdef _WIN32
174 /* mingw32 needs ffs for compilations without optimization. */
175 int ffs(int i)
177 /* Use gcc's builtin ffs. */
178 return __builtin_ffs(i);
181 /* Offset between 1/1/1601 and 1/1/1970 in 100 nanosec units */
182 #define _W32_FT_OFFSET (116444736000000000ULL)
184 int qemu_gettimeofday(qemu_timeval *tp)
186 union {
187 unsigned long long ns100; /*time since 1 Jan 1601 in 100ns units */
188 FILETIME ft;
189 } _now;
191 if(tp)
193 GetSystemTimeAsFileTime (&_now.ft);
194 tp->tv_usec=(long)((_now.ns100 / 10ULL) % 1000000ULL );
195 tp->tv_sec= (long)((_now.ns100 - _W32_FT_OFFSET) / 10000000ULL);
197 /* Always return 0 as per Open Group Base Specifications Issue 6.
198 Do not set errno on error. */
199 return 0;
201 #endif /* _WIN32 */
204 #ifdef _WIN32
205 void socket_set_nonblock(int fd)
207 unsigned long opt = 1;
208 ioctlsocket(fd, FIONBIO, &opt);
211 int inet_aton(const char *cp, struct in_addr *ia)
213 uint32_t addr = inet_addr(cp);
214 if (addr == 0xffffffff)
215 return 0;
216 ia->s_addr = addr;
217 return 1;
220 void qemu_set_cloexec(int fd)
224 #else
226 void socket_set_nonblock(int fd)
228 int f;
229 f = fcntl(fd, F_GETFL);
230 fcntl(fd, F_SETFL, f | O_NONBLOCK);
233 void qemu_set_cloexec(int fd)
235 int f;
236 f = fcntl(fd, F_GETFD);
237 fcntl(fd, F_SETFD, f | FD_CLOEXEC);
240 #endif
243 * Opens a file with FD_CLOEXEC set
245 int qemu_open(const char *name, int flags, ...)
247 int ret;
248 int mode = 0;
250 if (flags & O_CREAT) {
251 va_list ap;
253 va_start(ap, flags);
254 mode = va_arg(ap, int);
255 va_end(ap);
258 #ifdef O_CLOEXEC
259 ret = open(name, flags | O_CLOEXEC, mode);
260 #else
261 ret = open(name, flags, mode);
262 if (ret >= 0) {
263 qemu_set_cloexec(ret);
265 #endif
267 return ret;
271 * A variant of write(2) which handles partial write.
273 * Return the number of bytes transferred.
274 * Set errno if fewer than `count' bytes are written.
276 * This function don't work with non-blocking fd's.
277 * Any of the possibilities with non-bloking fd's is bad:
278 * - return a short write (then name is wrong)
279 * - busy wait adding (errno == EAGAIN) to the loop
281 ssize_t qemu_write_full(int fd, const void *buf, size_t count)
283 ssize_t ret = 0;
284 ssize_t total = 0;
286 while (count) {
287 ret = write(fd, buf, count);
288 if (ret < 0) {
289 if (errno == EINTR)
290 continue;
291 break;
294 count -= ret;
295 buf += ret;
296 total += ret;
299 return total;
302 #ifndef _WIN32
304 * Creates an eventfd that looks like a pipe and has EFD_CLOEXEC set.
306 int qemu_eventfd(int fds[2])
308 #ifdef CONFIG_EVENTFD
309 int ret;
311 ret = eventfd(0, 0);
312 if (ret >= 0) {
313 fds[0] = ret;
314 qemu_set_cloexec(ret);
315 if ((fds[1] = dup(ret)) == -1) {
316 close(ret);
317 return -1;
319 qemu_set_cloexec(fds[1]);
320 return 0;
323 if (errno != ENOSYS) {
324 return -1;
326 #endif
328 return qemu_pipe(fds);
332 * Creates a pipe with FD_CLOEXEC set on both file descriptors
334 int qemu_pipe(int pipefd[2])
336 int ret;
338 #ifdef CONFIG_PIPE2
339 ret = pipe2(pipefd, O_CLOEXEC);
340 if (ret != -1 || errno != ENOSYS) {
341 return ret;
343 #endif
344 ret = pipe(pipefd);
345 if (ret == 0) {
346 qemu_set_cloexec(pipefd[0]);
347 qemu_set_cloexec(pipefd[1]);
350 return ret;
352 #endif
355 * Opens a socket with FD_CLOEXEC set
357 int qemu_socket(int domain, int type, int protocol)
359 int ret;
361 #ifdef SOCK_CLOEXEC
362 ret = socket(domain, type | SOCK_CLOEXEC, protocol);
363 if (ret != -1 || errno != EINVAL) {
364 return ret;
366 #endif
367 ret = socket(domain, type, protocol);
368 if (ret >= 0) {
369 qemu_set_cloexec(ret);
372 return ret;
376 * Accept a connection and set FD_CLOEXEC
378 int qemu_accept(int s, struct sockaddr *addr, socklen_t *addrlen)
380 int ret;
382 #ifdef CONFIG_ACCEPT4
383 ret = accept4(s, addr, addrlen, SOCK_CLOEXEC);
384 if (ret != -1 || errno != ENOSYS) {
385 return ret;
387 #endif
388 ret = accept(s, addr, addrlen);
389 if (ret >= 0) {
390 qemu_set_cloexec(ret);
393 return ret;