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
33 /* Needed early for CONFIG_BSD etc. */
34 #include "config-host.h"
36 #if defined(CONFIG_MADVISE) || defined(CONFIG_POSIX_MADVISE)
41 #include <sys/types.h>
42 #include <sys/statvfs.h>
43 /* See MySQL bug #7156 (http://bugs.mysql.com/bug.php?id=7156) for
44 discussion about Solaris header problems */
45 extern int madvise(caddr_t
, size_t, int);
48 #include "qemu-common.h"
50 #include "qemu_socket.h"
52 static bool fips_enabled
= false;
54 static const char *qemu_version
= QEMU_VERSION
;
56 int socket_set_cork(int fd
, int v
)
58 #if defined(SOL_TCP) && defined(TCP_CORK)
59 return setsockopt(fd
, SOL_TCP
, TCP_CORK
, &v
, sizeof(v
));
65 int qemu_madvise(void *addr
, size_t len
, int advice
)
67 if (advice
== QEMU_MADV_INVALID
) {
71 #if defined(CONFIG_MADVISE)
72 return madvise(addr
, len
, advice
);
73 #elif defined(CONFIG_POSIX_MADVISE)
74 return posix_madvise(addr
, len
, advice
);
83 * Opens a file with FD_CLOEXEC set
85 int qemu_open(const char *name
, int flags
, ...)
90 if (flags
& O_CREAT
) {
94 mode
= va_arg(ap
, int);
99 ret
= open(name
, flags
| O_CLOEXEC
, mode
);
101 ret
= open(name
, flags
, mode
);
103 qemu_set_cloexec(ret
);
111 * A variant of write(2) which handles partial write.
113 * Return the number of bytes transferred.
114 * Set errno if fewer than `count' bytes are written.
116 * This function don't work with non-blocking fd's.
117 * Any of the possibilities with non-bloking fd's is bad:
118 * - return a short write (then name is wrong)
119 * - busy wait adding (errno == EAGAIN) to the loop
121 ssize_t
qemu_write_full(int fd
, const void *buf
, size_t count
)
127 ret
= write(fd
, buf
, count
);
143 * Opens a socket with FD_CLOEXEC set
145 int qemu_socket(int domain
, int type
, int protocol
)
150 ret
= socket(domain
, type
| SOCK_CLOEXEC
, protocol
);
151 if (ret
!= -1 || errno
!= EINVAL
) {
155 ret
= socket(domain
, type
, protocol
);
157 qemu_set_cloexec(ret
);
164 * Accept a connection and set FD_CLOEXEC
166 int qemu_accept(int s
, struct sockaddr
*addr
, socklen_t
*addrlen
)
170 #ifdef CONFIG_ACCEPT4
171 ret
= accept4(s
, addr
, addrlen
, SOCK_CLOEXEC
);
172 if (ret
!= -1 || errno
!= ENOSYS
) {
176 ret
= accept(s
, addr
, addrlen
);
178 qemu_set_cloexec(ret
);
185 * A variant of send(2) which handles partial write.
187 * Return the number of bytes transferred, which is only
188 * smaller than `count' if there is an error.
190 * This function won't work with non-blocking fd's.
191 * Any of the possibilities with non-bloking fd's is bad:
192 * - return a short write (then name is wrong)
193 * - busy wait adding (errno == EAGAIN) to the loop
195 ssize_t
qemu_send_full(int fd
, const void *buf
, size_t count
, int flags
)
201 ret
= send(fd
, buf
, count
, flags
);
203 if (errno
== EINTR
) {
218 * A variant of recv(2) which handles partial write.
220 * Return the number of bytes transferred, which is only
221 * smaller than `count' if there is an error.
223 * This function won't work with non-blocking fd's.
224 * Any of the possibilities with non-bloking fd's is bad:
225 * - return a short write (then name is wrong)
226 * - busy wait adding (errno == EAGAIN) to the loop
228 ssize_t
qemu_recv_full(int fd
, void *buf
, size_t count
, int flags
)
234 ret
= qemu_recv(fd
, buf
, count
, flags
);
236 if (ret
< 0 && errno
== EINTR
) {
250 void qemu_set_version(const char *version
)
252 qemu_version
= version
;
255 const char *qemu_get_version(void)
260 void fips_set_state(bool requested
)
264 FILE *fds
= fopen("/proc/sys/crypto/fips_enabled", "r");
266 fips_enabled
= (fgetc(fds
) == '1');
271 fips_enabled
= false;
272 #endif /* __linux__ */
275 fprintf(stderr
, "FIPS mode %s (requested %s)\n",
276 (fips_enabled
? "enabled" : "disabled"),
277 (requested
? "enabled" : "disabled"));
281 bool fips_get_state(void)