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
24 #include "qemu/osdep.h"
25 #include "qapi/error.h"
27 /* Needed early for CONFIG_BSD etc. */
30 #include <sys/statvfs.h>
31 /* See MySQL bug #7156 (http://bugs.mysql.com/bug.php?id=7156) for
32 discussion about Solaris header problems */
33 extern int madvise(char *, size_t, int);
36 #include "qemu-common.h"
37 #include "qemu/cutils.h"
38 #include "qemu/sockets.h"
39 #include "qemu/error-report.h"
40 #include "monitor/monitor.h"
42 static bool fips_enabled
= false;
44 static const char *hw_version
= QEMU_HW_VERSION
;
46 int socket_set_cork(int fd
, int v
)
48 #if defined(SOL_TCP) && defined(TCP_CORK)
49 return qemu_setsockopt(fd
, SOL_TCP
, TCP_CORK
, &v
, sizeof(v
));
55 int socket_set_nodelay(int fd
)
58 return qemu_setsockopt(fd
, IPPROTO_TCP
, TCP_NODELAY
, &v
, sizeof(v
));
61 int qemu_madvise(void *addr
, size_t len
, int advice
)
63 if (advice
== QEMU_MADV_INVALID
) {
67 #if defined(CONFIG_MADVISE)
68 return madvise(addr
, len
, advice
);
69 #elif defined(CONFIG_POSIX_MADVISE)
70 return posix_madvise(addr
, len
, advice
);
77 static int qemu_mprotect__osdep(void *addr
, size_t size
, int prot
)
79 g_assert(!((uintptr_t)addr
& ~qemu_real_host_page_mask
));
80 g_assert(!(size
& ~qemu_real_host_page_mask
));
85 if (!VirtualProtect(addr
, size
, prot
, &old_protect
)) {
86 g_autofree gchar
*emsg
= g_win32_error_message(GetLastError());
87 error_report("%s: VirtualProtect failed: %s", __func__
, emsg
);
92 if (mprotect(addr
, size
, prot
)) {
93 error_report("%s: mprotect failed: %s", __func__
, strerror(errno
));
100 int qemu_mprotect_rw(void *addr
, size_t size
)
103 return qemu_mprotect__osdep(addr
, size
, PAGE_READWRITE
);
105 return qemu_mprotect__osdep(addr
, size
, PROT_READ
| PROT_WRITE
);
109 int qemu_mprotect_rwx(void *addr
, size_t size
)
112 return qemu_mprotect__osdep(addr
, size
, PAGE_EXECUTE_READWRITE
);
114 return qemu_mprotect__osdep(addr
, size
, PROT_READ
| PROT_WRITE
| PROT_EXEC
);
118 int qemu_mprotect_none(void *addr
, size_t size
)
121 return qemu_mprotect__osdep(addr
, size
, PAGE_NOACCESS
);
123 return qemu_mprotect__osdep(addr
, size
, PROT_NONE
);
129 static int fcntl_op_setlk
= -1;
130 static int fcntl_op_getlk
= -1;
133 * Dups an fd and sets the flags
135 int qemu_dup_flags(int fd
, int flags
)
146 dup_flags
= fcntl(ret
, F_GETFL
);
147 if (dup_flags
== -1) {
151 if ((flags
& O_SYNC
) != (dup_flags
& O_SYNC
)) {
156 /* Set/unset flags that we can with fcntl */
157 if (fcntl(ret
, F_SETFL
, flags
) == -1) {
161 /* Truncate the file in the cases that open() would truncate it */
162 if (flags
& O_TRUNC
||
163 ((flags
& (O_CREAT
| O_EXCL
)) == (O_CREAT
| O_EXCL
))) {
164 if (ftruncate(ret
, 0) == -1) {
183 #ifdef F_DUPFD_CLOEXEC
184 ret
= fcntl(fd
, F_DUPFD_CLOEXEC
, 0);
188 qemu_set_cloexec(ret
);
194 static int qemu_parse_fdset(const char *param
)
196 return qemu_parse_fd(param
);
199 static void qemu_probe_lock_ops(void)
201 if (fcntl_op_setlk
== -1) {
206 .l_whence
= SEEK_SET
,
212 fd
= open("/dev/null", O_RDWR
);
215 "Failed to open /dev/null for OFD lock probing: %s\n",
217 fcntl_op_setlk
= F_SETLK
;
218 fcntl_op_getlk
= F_GETLK
;
221 ret
= fcntl(fd
, F_OFD_GETLK
, &fl
);
224 fcntl_op_setlk
= F_OFD_SETLK
;
225 fcntl_op_getlk
= F_OFD_GETLK
;
227 fcntl_op_setlk
= F_SETLK
;
228 fcntl_op_getlk
= F_GETLK
;
231 fcntl_op_setlk
= F_SETLK
;
232 fcntl_op_getlk
= F_GETLK
;
237 bool qemu_has_ofd_lock(void)
239 qemu_probe_lock_ops();
241 return fcntl_op_setlk
== F_OFD_SETLK
;
247 static int qemu_lock_fcntl(int fd
, int64_t start
, int64_t len
, int fl_type
)
251 .l_whence
= SEEK_SET
,
256 qemu_probe_lock_ops();
258 ret
= fcntl(fd
, fcntl_op_setlk
, &fl
);
259 } while (ret
== -1 && errno
== EINTR
);
260 return ret
== -1 ? -errno
: 0;
263 int qemu_lock_fd(int fd
, int64_t start
, int64_t len
, bool exclusive
)
265 return qemu_lock_fcntl(fd
, start
, len
, exclusive
? F_WRLCK
: F_RDLCK
);
268 int qemu_unlock_fd(int fd
, int64_t start
, int64_t len
)
270 return qemu_lock_fcntl(fd
, start
, len
, F_UNLCK
);
273 int qemu_lock_fd_test(int fd
, int64_t start
, int64_t len
, bool exclusive
)
277 .l_whence
= SEEK_SET
,
280 .l_type
= exclusive
? F_WRLCK
: F_RDLCK
,
282 qemu_probe_lock_ops();
283 ret
= fcntl(fd
, fcntl_op_getlk
, &fl
);
287 return fl
.l_type
== F_UNLCK
? 0 : -EAGAIN
;
292 static int qemu_open_cloexec(const char *name
, int flags
, mode_t mode
)
296 ret
= open(name
, flags
| O_CLOEXEC
, mode
);
298 ret
= open(name
, flags
, mode
);
300 qemu_set_cloexec(ret
);
307 * Opens a file with FD_CLOEXEC set
310 qemu_open_internal(const char *name
, int flags
, mode_t mode
, Error
**errp
)
315 const char *fdset_id_str
;
317 /* Attempt dup of fd from fd set */
318 if (strstart(name
, "/dev/fdset/", &fdset_id_str
)) {
322 fdset_id
= qemu_parse_fdset(fdset_id_str
);
323 if (fdset_id
== -1) {
324 error_setg(errp
, "Could not parse fdset %s", name
);
329 dupfd
= monitor_fdset_dup_fd_add(fdset_id
, flags
);
331 error_setg_errno(errp
, errno
, "Could not dup FD for %s flags %x",
340 ret
= qemu_open_cloexec(name
, flags
, mode
);
343 const char *action
= flags
& O_CREAT
? "create" : "open";
345 /* Give more helpful error message for O_DIRECT */
346 if (errno
== EINVAL
&& (flags
& O_DIRECT
)) {
347 ret
= open(name
, flags
& ~O_DIRECT
, mode
);
350 error_setg(errp
, "Could not %s '%s': "
351 "filesystem does not support O_DIRECT",
353 errno
= EINVAL
; /* restore first open()'s errno */
357 #endif /* O_DIRECT */
358 error_setg_errno(errp
, errno
, "Could not %s '%s'",
366 int qemu_open(const char *name
, int flags
, Error
**errp
)
368 assert(!(flags
& O_CREAT
));
370 return qemu_open_internal(name
, flags
, 0, errp
);
374 int qemu_create(const char *name
, int flags
, mode_t mode
, Error
**errp
)
376 assert(!(flags
& O_CREAT
));
378 return qemu_open_internal(name
, flags
| O_CREAT
, mode
, errp
);
382 int qemu_open_old(const char *name
, int flags
, ...)
389 if (flags
& O_CREAT
) {
390 mode
= va_arg(ap
, int);
394 ret
= qemu_open_internal(name
, flags
, mode
, NULL
);
397 if (ret
== -1 && errno
== EINVAL
&& (flags
& O_DIRECT
)) {
398 error_report("file system may not support O_DIRECT");
399 errno
= EINVAL
; /* in case it was clobbered */
401 #endif /* O_DIRECT */
406 int qemu_close(int fd
)
410 /* Close fd that was dup'd from an fdset */
411 fdset_id
= monitor_fdset_dup_fd_find(fd
);
412 if (fdset_id
!= -1) {
417 monitor_fdset_dup_fd_remove(fd
);
427 * Delete a file from the filesystem, unless the filename is /dev/fdset/...
429 * Returns: On success, zero is returned. On error, -1 is returned,
430 * and errno is set appropriately.
432 int qemu_unlink(const char *name
)
434 if (g_str_has_prefix(name
, "/dev/fdset/")) {
442 * A variant of write(2) which handles partial write.
444 * Return the number of bytes transferred.
445 * Set errno if fewer than `count' bytes are written.
447 * This function don't work with non-blocking fd's.
448 * Any of the possibilities with non-blocking fd's is bad:
449 * - return a short write (then name is wrong)
450 * - busy wait adding (errno == EAGAIN) to the loop
452 ssize_t
qemu_write_full(int fd
, const void *buf
, size_t count
)
458 ret
= write(fd
, buf
, count
);
474 * Opens a socket with FD_CLOEXEC set
476 int qemu_socket(int domain
, int type
, int protocol
)
481 ret
= socket(domain
, type
| SOCK_CLOEXEC
, protocol
);
482 if (ret
!= -1 || errno
!= EINVAL
) {
486 ret
= socket(domain
, type
, protocol
);
488 qemu_set_cloexec(ret
);
495 * Accept a connection and set FD_CLOEXEC
497 int qemu_accept(int s
, struct sockaddr
*addr
, socklen_t
*addrlen
)
501 #ifdef CONFIG_ACCEPT4
502 ret
= accept4(s
, addr
, addrlen
, SOCK_CLOEXEC
);
503 if (ret
!= -1 || errno
!= ENOSYS
) {
507 ret
= accept(s
, addr
, addrlen
);
509 qemu_set_cloexec(ret
);
515 void qemu_set_hw_version(const char *version
)
517 hw_version
= version
;
520 const char *qemu_hw_version(void)
525 void fips_set_state(bool requested
)
529 FILE *fds
= fopen("/proc/sys/crypto/fips_enabled", "r");
531 fips_enabled
= (fgetc(fds
) == '1');
536 fips_enabled
= false;
537 #endif /* __linux__ */
540 fprintf(stderr
, "FIPS mode %s (requested %s)\n",
541 (fips_enabled
? "enabled" : "disabled"),
542 (requested
? "enabled" : "disabled"));
546 bool fips_get_state(void)
552 static void socket_cleanup(void)
558 int socket_init(void)
564 ret
= WSAStartup(MAKEWORD(2, 2), &Data
);
566 err
= WSAGetLastError();
567 fprintf(stderr
, "WSAStartup: %d\n", err
);
570 atexit(socket_cleanup
);
577 /* helper function for iov_send_recv() */
579 readv_writev(int fd
, const struct iovec
*iov
, int iov_cnt
, bool do_write
)
583 while (i
< iov_cnt
) {
585 ? write(fd
, iov
[i
].iov_base
, iov
[i
].iov_len
)
586 : read(fd
, iov
[i
].iov_base
, iov
[i
].iov_len
);
591 } else if (errno
== EINTR
) {
594 /* else it is some "other" error,
595 * only return if there was no data processed. */
607 readv(int fd
, const struct iovec
*iov
, int iov_cnt
)
609 return readv_writev(fd
, iov
, iov_cnt
, false);
613 writev(int fd
, const struct iovec
*iov
, int iov_cnt
)
615 return readv_writev(fd
, iov
, iov_cnt
, true);