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"
35 #if defined(CONFIG_MADVISE) || defined(CONFIG_POSIX_MADVISE)
40 #include <sys/types.h>
41 #include <sys/statvfs.h>
42 /* See MySQL bug #7156 (http://bugs.mysql.com/bug.php?id=7156) for
43 discussion about Solaris header problems */
44 extern int madvise(caddr_t
, size_t, int);
47 #include "qemu-common.h"
49 #include "qemu_socket.h"
51 static const char *qemu_version
= QEMU_VERSION
;
53 int socket_set_cork(int fd
, int v
)
55 #if defined(SOL_TCP) && defined(TCP_CORK)
56 return setsockopt(fd
, SOL_TCP
, TCP_CORK
, &v
, sizeof(v
));
62 int qemu_madvise(void *addr
, size_t len
, int advice
)
64 if (advice
== QEMU_MADV_INVALID
) {
68 #if defined(CONFIG_MADVISE)
69 return madvise(addr
, len
, advice
);
70 #elif defined(CONFIG_POSIX_MADVISE)
71 return posix_madvise(addr
, len
, advice
);
80 * Opens a file with FD_CLOEXEC set
82 int qemu_open(const char *name
, int flags
, ...)
87 if (flags
& O_CREAT
) {
91 mode
= va_arg(ap
, int);
96 ret
= open(name
, flags
| O_CLOEXEC
, mode
);
98 ret
= open(name
, flags
, mode
);
100 qemu_set_cloexec(ret
);
108 * A variant of write(2) which handles partial write.
110 * Return the number of bytes transferred.
111 * Set errno if fewer than `count' bytes are written.
113 * This function don't work with non-blocking fd's.
114 * Any of the possibilities with non-bloking fd's is bad:
115 * - return a short write (then name is wrong)
116 * - busy wait adding (errno == EAGAIN) to the loop
118 ssize_t
qemu_write_full(int fd
, const void *buf
, size_t count
)
124 ret
= write(fd
, buf
, count
);
140 * Opens a socket with FD_CLOEXEC set
142 int qemu_socket(int domain
, int type
, int protocol
)
147 ret
= socket(domain
, type
| SOCK_CLOEXEC
, protocol
);
148 if (ret
!= -1 || errno
!= EINVAL
) {
152 ret
= socket(domain
, type
, protocol
);
154 qemu_set_cloexec(ret
);
161 * Accept a connection and set FD_CLOEXEC
163 int qemu_accept(int s
, struct sockaddr
*addr
, socklen_t
*addrlen
)
167 #ifdef CONFIG_ACCEPT4
168 ret
= accept4(s
, addr
, addrlen
, SOCK_CLOEXEC
);
169 if (ret
!= -1 || errno
!= ENOSYS
) {
173 ret
= accept(s
, addr
, addrlen
);
175 qemu_set_cloexec(ret
);
182 * A variant of send(2) which handles partial write.
184 * Return the number of bytes transferred, which is only
185 * smaller than `count' if there is an error.
187 * This function won't work with non-blocking fd's.
188 * Any of the possibilities with non-bloking fd's is bad:
189 * - return a short write (then name is wrong)
190 * - busy wait adding (errno == EAGAIN) to the loop
192 ssize_t
qemu_send_full(int fd
, const void *buf
, size_t count
, int flags
)
198 ret
= send(fd
, buf
, count
, flags
);
200 if (errno
== EINTR
) {
215 * A variant of recv(2) which handles partial write.
217 * Return the number of bytes transferred, which is only
218 * smaller than `count' if there is an error.
220 * This function won't work with non-blocking fd's.
221 * Any of the possibilities with non-bloking fd's is bad:
222 * - return a short write (then name is wrong)
223 * - busy wait adding (errno == EAGAIN) to the loop
225 ssize_t
qemu_recv_full(int fd
, void *buf
, size_t count
, int flags
)
231 ret
= qemu_recv(fd
, buf
, count
, flags
);
233 if (ret
< 0 && errno
== EINTR
) {
247 void qemu_set_version(const char *version
)
249 qemu_version
= version
;
252 const char *qemu_get_version(void)