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
32 /* Needed early for CONFIG_BSD etc. */
33 #include "config-host.h"
36 #include <sys/types.h>
37 #include <sys/statvfs.h>
41 #include <sys/eventfd.h>
46 #elif defined(CONFIG_BSD)
52 #include "qemu-common.h"
54 #include "qemu_socket.h"
56 #if !defined(_POSIX_C_SOURCE) || defined(_WIN32) || defined(__sun__)
57 static void *oom_check(void *ptr
)
61 fprintf(stderr
, "Failed to allocate memory: %lu\n", GetLastError());
63 fprintf(stderr
, "Failed to allocate memory: %s\n", strerror(errno
));
72 void *qemu_memalign(size_t alignment
, size_t size
)
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. */
88 return oom_check(VirtualAlloc(NULL
, size
, MEM_COMMIT
, PAGE_READWRITE
));
91 void qemu_vfree(void *ptr
)
93 VirtualFree(ptr
, 0, MEM_RELEASE
);
98 void *qemu_memalign(size_t alignment
, size_t size
)
100 #if defined(_POSIX_C_SOURCE) && !defined(__sun__)
103 ret
= posix_memalign(&ptr
, alignment
, size
);
105 fprintf(stderr
, "Failed to allocate %zu B: %s\n",
106 size
, strerror(ret
));
110 #elif defined(CONFIG_BSD)
111 return oom_check(valloc(size
));
113 return oom_check(memalign(alignment
, size
));
117 /* alloc shared memory pages */
118 void *qemu_vmalloc(size_t size
)
120 return qemu_memalign(getpagesize(), size
);
123 void qemu_vfree(void *ptr
)
130 int qemu_create_pidfile(const char *filename
)
137 fd
= qemu_open(filename
, O_RDWR
| O_CREAT
, 0600);
141 if (lockf(fd
, F_TLOCK
, 0) == -1)
144 len
= snprintf(buffer
, sizeof(buffer
), "%ld\n", (long)getpid());
145 if (write(fd
, buffer
, len
) != len
)
151 memset(&overlap
, 0, sizeof(overlap
));
153 file
= CreateFile(filename
, GENERIC_WRITE
, FILE_SHARE_READ
, NULL
,
154 OPEN_ALWAYS
, FILE_ATTRIBUTE_NORMAL
, NULL
);
156 if (file
== INVALID_HANDLE_VALUE
)
159 len
= snprintf(buffer
, sizeof(buffer
), "%ld\n", (long)getpid());
160 ret
= WriteFileEx(file
, (LPCVOID
)buffer
, (DWORD
)len
,
170 /* Offset between 1/1/1601 and 1/1/1970 in 100 nanosec units */
171 #define _W32_FT_OFFSET (116444736000000000ULL)
173 int qemu_gettimeofday(qemu_timeval
*tp
)
176 unsigned long long ns100
; /*time since 1 Jan 1601 in 100ns units */
182 GetSystemTimeAsFileTime (&_now
.ft
);
183 tp
->tv_usec
=(long)((_now
.ns100
/ 10ULL) % 1000000ULL );
184 tp
->tv_sec
= (long)((_now
.ns100
- _W32_FT_OFFSET
) / 10000000ULL);
186 /* Always return 0 as per Open Group Base Specifications Issue 6.
187 Do not set errno on error. */
194 void socket_set_nonblock(int fd
)
196 unsigned long opt
= 1;
197 ioctlsocket(fd
, FIONBIO
, &opt
);
200 int inet_aton(const char *cp
, struct in_addr
*ia
)
202 uint32_t addr
= inet_addr(cp
);
203 if (addr
== 0xffffffff)
209 void qemu_set_cloexec(int fd
)
215 void socket_set_nonblock(int fd
)
218 f
= fcntl(fd
, F_GETFL
);
219 fcntl(fd
, F_SETFL
, f
| O_NONBLOCK
);
222 void qemu_set_cloexec(int fd
)
225 f
= fcntl(fd
, F_GETFD
);
226 fcntl(fd
, F_SETFD
, f
| FD_CLOEXEC
);
232 * Opens a file with FD_CLOEXEC set
234 int qemu_open(const char *name
, int flags
, ...)
239 if (flags
& O_CREAT
) {
243 mode
= va_arg(ap
, int);
248 ret
= open(name
, flags
| O_CLOEXEC
, mode
);
250 ret
= open(name
, flags
, mode
);
252 qemu_set_cloexec(ret
);
260 * A variant of write(2) which handles partial write.
262 * Return the number of bytes transferred.
263 * Set errno if fewer than `count' bytes are written.
265 * This function don't work with non-blocking fd's.
266 * Any of the possibilities with non-bloking fd's is bad:
267 * - return a short write (then name is wrong)
268 * - busy wait adding (errno == EAGAIN) to the loop
270 ssize_t
qemu_write_full(int fd
, const void *buf
, size_t count
)
276 ret
= write(fd
, buf
, count
);
293 * Creates an eventfd that looks like a pipe and has EFD_CLOEXEC set.
295 int qemu_eventfd(int fds
[2])
297 #ifdef CONFIG_EVENTFD
303 qemu_set_cloexec(ret
);
304 if ((fds
[1] = dup(ret
)) == -1) {
308 qemu_set_cloexec(fds
[1]);
312 if (errno
!= ENOSYS
) {
317 return qemu_pipe(fds
);
321 * Creates a pipe with FD_CLOEXEC set on both file descriptors
323 int qemu_pipe(int pipefd
[2])
328 ret
= pipe2(pipefd
, O_CLOEXEC
);
329 if (ret
!= -1 || errno
!= ENOSYS
) {
335 qemu_set_cloexec(pipefd
[0]);
336 qemu_set_cloexec(pipefd
[1]);
344 * Opens a socket with FD_CLOEXEC set
346 int qemu_socket(int domain
, int type
, int protocol
)
351 ret
= socket(domain
, type
| SOCK_CLOEXEC
, protocol
);
352 if (ret
!= -1 || errno
!= EINVAL
) {
356 ret
= socket(domain
, type
, protocol
);
358 qemu_set_cloexec(ret
);
365 * Accept a connection and set FD_CLOEXEC
367 int qemu_accept(int s
, struct sockaddr
*addr
, socklen_t
*addrlen
)
371 #ifdef CONFIG_ACCEPT4
372 ret
= accept4(s
, addr
, addrlen
, SOCK_CLOEXEC
);
373 if (ret
!= -1 || errno
!= ENOSYS
) {
377 ret
= accept(s
, addr
, addrlen
);
379 qemu_set_cloexec(ret
);