Move msix.o build back to Makefile.objs
[qemu/qemu-dev-zwu.git] / osdep.c
blob1729431269dbc6d1e4061109f5c886a95996e714
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 "trace.h"
54 #include "sysemu.h"
55 #include "qemu_socket.h"
57 #if !defined(_POSIX_C_SOURCE) || defined(_WIN32) || defined(__sun__)
58 static void *oom_check(void *ptr)
60 if (ptr == NULL) {
61 #if defined(_WIN32)
62 fprintf(stderr, "Failed to allocate memory: %lu\n", GetLastError());
63 #else
64 fprintf(stderr, "Failed to allocate memory: %s\n", strerror(errno));
65 #endif
66 abort();
68 return ptr;
70 #endif
72 #if defined(_WIN32)
73 void *qemu_memalign(size_t alignment, size_t size)
75 void *ptr;
77 if (!size) {
78 abort();
80 ptr = oom_check(VirtualAlloc(NULL, size, MEM_COMMIT, PAGE_READWRITE));
81 trace_qemu_memalign(alignment, size, ptr);
82 return ptr;
85 void *qemu_vmalloc(size_t size)
87 void *ptr;
89 /* FIXME: this is not exactly optimal solution since VirtualAlloc
90 has 64Kb granularity, but at least it guarantees us that the
91 memory is page aligned. */
92 if (!size) {
93 abort();
95 ptr = oom_check(VirtualAlloc(NULL, size, MEM_COMMIT, PAGE_READWRITE));
96 trace_qemu_vmalloc(size, ptr);
97 return ptr;
100 void qemu_vfree(void *ptr)
102 trace_qemu_vfree(ptr);
103 VirtualFree(ptr, 0, MEM_RELEASE);
106 #else
108 void *qemu_memalign(size_t alignment, size_t size)
110 void *ptr;
111 #if defined(_POSIX_C_SOURCE) && !defined(__sun__)
112 int ret;
113 ret = posix_memalign(&ptr, alignment, size);
114 if (ret != 0) {
115 fprintf(stderr, "Failed to allocate %zu B: %s\n",
116 size, strerror(ret));
117 abort();
119 #elif defined(CONFIG_BSD)
120 ptr = oom_check(valloc(size));
121 #else
122 ptr = oom_check(memalign(alignment, size));
123 #endif
124 trace_qemu_memalign(alignment, size, ptr);
125 return ptr;
128 /* alloc shared memory pages */
129 void *qemu_vmalloc(size_t size)
131 #ifndef __ia64__
132 return qemu_memalign(getpagesize(), size);
133 #else
134 return qemu_memalign(65536, size);
135 #endif
138 void qemu_vfree(void *ptr)
140 trace_qemu_vfree(ptr);
141 free(ptr);
144 #endif
146 int qemu_create_pidfile(const char *filename)
148 char buffer[128];
149 int len;
150 #ifndef _WIN32
151 int fd;
153 fd = qemu_open(filename, O_RDWR | O_CREAT, 0600);
154 if (fd == -1)
155 return -1;
157 if (lockf(fd, F_TLOCK, 0) == -1)
158 return -1;
160 len = snprintf(buffer, sizeof(buffer), "%ld\n", (long)getpid());
161 if (write(fd, buffer, len) != len)
162 return -1;
163 #else
164 HANDLE file;
165 OVERLAPPED overlap;
166 BOOL ret;
167 memset(&overlap, 0, sizeof(overlap));
169 file = CreateFile(filename, GENERIC_WRITE, FILE_SHARE_READ, NULL,
170 OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
172 if (file == INVALID_HANDLE_VALUE)
173 return -1;
175 len = snprintf(buffer, sizeof(buffer), "%ld\n", (long)getpid());
176 ret = WriteFileEx(file, (LPCVOID)buffer, (DWORD)len,
177 &overlap, NULL);
178 if (ret == 0)
179 return -1;
180 #endif
181 return 0;
184 #ifdef _WIN32
186 /* mingw32 needs ffs for compilations without optimization. */
187 int ffs(int i)
189 /* Use gcc's builtin ffs. */
190 return __builtin_ffs(i);
193 /* Offset between 1/1/1601 and 1/1/1970 in 100 nanosec units */
194 #define _W32_FT_OFFSET (116444736000000000ULL)
196 int qemu_gettimeofday(qemu_timeval *tp)
198 union {
199 unsigned long long ns100; /*time since 1 Jan 1601 in 100ns units */
200 FILETIME ft;
201 } _now;
203 if(tp)
205 GetSystemTimeAsFileTime (&_now.ft);
206 tp->tv_usec=(long)((_now.ns100 / 10ULL) % 1000000ULL );
207 tp->tv_sec= (long)((_now.ns100 - _W32_FT_OFFSET) / 10000000ULL);
209 /* Always return 0 as per Open Group Base Specifications Issue 6.
210 Do not set errno on error. */
211 return 0;
213 #endif /* _WIN32 */
216 #ifdef _WIN32
217 void socket_set_nonblock(int fd)
219 unsigned long opt = 1;
220 ioctlsocket(fd, FIONBIO, &opt);
223 int inet_aton(const char *cp, struct in_addr *ia)
225 uint32_t addr = inet_addr(cp);
226 if (addr == 0xffffffff)
227 return 0;
228 ia->s_addr = addr;
229 return 1;
232 void qemu_set_cloexec(int fd)
236 #else
238 void socket_set_nonblock(int fd)
240 int f;
241 f = fcntl(fd, F_GETFL);
242 fcntl(fd, F_SETFL, f | O_NONBLOCK);
245 void qemu_set_cloexec(int fd)
247 int f;
248 f = fcntl(fd, F_GETFD);
249 fcntl(fd, F_SETFD, f | FD_CLOEXEC);
252 #endif
255 * Opens a file with FD_CLOEXEC set
257 int qemu_open(const char *name, int flags, ...)
259 int ret;
260 int mode = 0;
262 if (flags & O_CREAT) {
263 va_list ap;
265 va_start(ap, flags);
266 mode = va_arg(ap, int);
267 va_end(ap);
270 #ifdef O_CLOEXEC
271 ret = open(name, flags | O_CLOEXEC, mode);
272 #else
273 ret = open(name, flags, mode);
274 if (ret >= 0) {
275 qemu_set_cloexec(ret);
277 #endif
279 return ret;
283 * A variant of write(2) which handles partial write.
285 * Return the number of bytes transferred.
286 * Set errno if fewer than `count' bytes are written.
288 * This function don't work with non-blocking fd's.
289 * Any of the possibilities with non-bloking fd's is bad:
290 * - return a short write (then name is wrong)
291 * - busy wait adding (errno == EAGAIN) to the loop
293 ssize_t qemu_write_full(int fd, const void *buf, size_t count)
295 ssize_t ret = 0;
296 ssize_t total = 0;
298 while (count) {
299 ret = write(fd, buf, count);
300 if (ret < 0) {
301 if (errno == EINTR)
302 continue;
303 break;
306 count -= ret;
307 buf += ret;
308 total += ret;
311 return total;
314 #ifndef _WIN32
316 * Creates an eventfd that looks like a pipe and has EFD_CLOEXEC set.
318 int qemu_eventfd(int fds[2])
320 #ifdef CONFIG_EVENTFD
321 int ret;
323 ret = eventfd(0, 0);
324 if (ret >= 0) {
325 fds[0] = ret;
326 qemu_set_cloexec(ret);
327 if ((fds[1] = dup(ret)) == -1) {
328 close(ret);
329 return -1;
331 qemu_set_cloexec(fds[1]);
332 return 0;
335 if (errno != ENOSYS) {
336 return -1;
338 #endif
340 return qemu_pipe(fds);
344 * Creates a pipe with FD_CLOEXEC set on both file descriptors
346 int qemu_pipe(int pipefd[2])
348 int ret;
350 #ifdef CONFIG_PIPE2
351 ret = pipe2(pipefd, O_CLOEXEC);
352 if (ret != -1 || errno != ENOSYS) {
353 return ret;
355 #endif
356 ret = pipe(pipefd);
357 if (ret == 0) {
358 qemu_set_cloexec(pipefd[0]);
359 qemu_set_cloexec(pipefd[1]);
362 return ret;
364 #endif
367 * Opens a socket with FD_CLOEXEC set
369 int qemu_socket(int domain, int type, int protocol)
371 int ret;
373 #ifdef SOCK_CLOEXEC
374 ret = socket(domain, type | SOCK_CLOEXEC, protocol);
375 if (ret != -1 || errno != EINVAL) {
376 return ret;
378 #endif
379 ret = socket(domain, type, protocol);
380 if (ret >= 0) {
381 qemu_set_cloexec(ret);
384 return ret;
388 * Accept a connection and set FD_CLOEXEC
390 int qemu_accept(int s, struct sockaddr *addr, socklen_t *addrlen)
392 int ret;
394 #ifdef CONFIG_ACCEPT4
395 ret = accept4(s, addr, addrlen, SOCK_CLOEXEC);
396 if (ret != -1 || errno != ENOSYS) {
397 return ret;
399 #endif
400 ret = accept(s, addr, addrlen);
401 if (ret >= 0) {
402 qemu_set_cloexec(ret);
405 return ret;