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 "qemu/madvise.h"
41 #include "qemu/mprotect.h"
42 #include "qemu/hw-version.h"
43 #include "monitor/monitor.h"
45 static bool fips_enabled
= false;
47 static const char *hw_version
= QEMU_HW_VERSION
;
49 int socket_set_cork(int fd
, int v
)
51 #if defined(SOL_TCP) && defined(TCP_CORK)
52 return qemu_setsockopt(fd
, SOL_TCP
, TCP_CORK
, &v
, sizeof(v
));
58 int socket_set_nodelay(int fd
)
61 return qemu_setsockopt(fd
, IPPROTO_TCP
, TCP_NODELAY
, &v
, sizeof(v
));
64 int qemu_madvise(void *addr
, size_t len
, int advice
)
66 if (advice
== QEMU_MADV_INVALID
) {
70 #if defined(CONFIG_MADVISE)
71 return madvise(addr
, len
, advice
);
72 #elif defined(CONFIG_POSIX_MADVISE)
73 return posix_madvise(addr
, len
, advice
);
80 static int qemu_mprotect__osdep(void *addr
, size_t size
, int prot
)
82 g_assert(!((uintptr_t)addr
& ~qemu_real_host_page_mask
));
83 g_assert(!(size
& ~qemu_real_host_page_mask
));
88 if (!VirtualProtect(addr
, size
, prot
, &old_protect
)) {
89 g_autofree gchar
*emsg
= g_win32_error_message(GetLastError());
90 error_report("%s: VirtualProtect failed: %s", __func__
, emsg
);
95 if (mprotect(addr
, size
, prot
)) {
96 error_report("%s: mprotect failed: %s", __func__
, strerror(errno
));
103 int qemu_mprotect_rw(void *addr
, size_t size
)
106 return qemu_mprotect__osdep(addr
, size
, PAGE_READWRITE
);
108 return qemu_mprotect__osdep(addr
, size
, PROT_READ
| PROT_WRITE
);
112 int qemu_mprotect_rwx(void *addr
, size_t size
)
115 return qemu_mprotect__osdep(addr
, size
, PAGE_EXECUTE_READWRITE
);
117 return qemu_mprotect__osdep(addr
, size
, PROT_READ
| PROT_WRITE
| PROT_EXEC
);
121 int qemu_mprotect_none(void *addr
, size_t size
)
124 return qemu_mprotect__osdep(addr
, size
, PAGE_NOACCESS
);
126 return qemu_mprotect__osdep(addr
, size
, PROT_NONE
);
132 static int fcntl_op_setlk
= -1;
133 static int fcntl_op_getlk
= -1;
136 * Dups an fd and sets the flags
138 int qemu_dup_flags(int fd
, int flags
)
149 dup_flags
= fcntl(ret
, F_GETFL
);
150 if (dup_flags
== -1) {
154 if ((flags
& O_SYNC
) != (dup_flags
& O_SYNC
)) {
159 /* Set/unset flags that we can with fcntl */
160 if (fcntl(ret
, F_SETFL
, flags
) == -1) {
164 /* Truncate the file in the cases that open() would truncate it */
165 if (flags
& O_TRUNC
||
166 ((flags
& (O_CREAT
| O_EXCL
)) == (O_CREAT
| O_EXCL
))) {
167 if (ftruncate(ret
, 0) == -1) {
186 #ifdef F_DUPFD_CLOEXEC
187 ret
= fcntl(fd
, F_DUPFD_CLOEXEC
, 0);
191 qemu_set_cloexec(ret
);
197 static int qemu_parse_fdset(const char *param
)
199 return qemu_parse_fd(param
);
202 static void qemu_probe_lock_ops(void)
204 if (fcntl_op_setlk
== -1) {
209 .l_whence
= SEEK_SET
,
215 fd
= open("/dev/null", O_RDWR
);
218 "Failed to open /dev/null for OFD lock probing: %s\n",
220 fcntl_op_setlk
= F_SETLK
;
221 fcntl_op_getlk
= F_GETLK
;
224 ret
= fcntl(fd
, F_OFD_GETLK
, &fl
);
227 fcntl_op_setlk
= F_OFD_SETLK
;
228 fcntl_op_getlk
= F_OFD_GETLK
;
230 fcntl_op_setlk
= F_SETLK
;
231 fcntl_op_getlk
= F_GETLK
;
234 fcntl_op_setlk
= F_SETLK
;
235 fcntl_op_getlk
= F_GETLK
;
240 bool qemu_has_ofd_lock(void)
242 qemu_probe_lock_ops();
244 return fcntl_op_setlk
== F_OFD_SETLK
;
250 static int qemu_lock_fcntl(int fd
, int64_t start
, int64_t len
, int fl_type
)
254 .l_whence
= SEEK_SET
,
259 qemu_probe_lock_ops();
261 ret
= fcntl(fd
, fcntl_op_setlk
, &fl
);
262 } while (ret
== -1 && errno
== EINTR
);
263 return ret
== -1 ? -errno
: 0;
266 int qemu_lock_fd(int fd
, int64_t start
, int64_t len
, bool exclusive
)
268 return qemu_lock_fcntl(fd
, start
, len
, exclusive
? F_WRLCK
: F_RDLCK
);
271 int qemu_unlock_fd(int fd
, int64_t start
, int64_t len
)
273 return qemu_lock_fcntl(fd
, start
, len
, F_UNLCK
);
276 int qemu_lock_fd_test(int fd
, int64_t start
, int64_t len
, bool exclusive
)
280 .l_whence
= SEEK_SET
,
283 .l_type
= exclusive
? F_WRLCK
: F_RDLCK
,
285 qemu_probe_lock_ops();
286 ret
= fcntl(fd
, fcntl_op_getlk
, &fl
);
290 return fl
.l_type
== F_UNLCK
? 0 : -EAGAIN
;
295 static int qemu_open_cloexec(const char *name
, int flags
, mode_t mode
)
299 ret
= open(name
, flags
| O_CLOEXEC
, mode
);
301 ret
= open(name
, flags
, mode
);
303 qemu_set_cloexec(ret
);
310 * Opens a file with FD_CLOEXEC set
313 qemu_open_internal(const char *name
, int flags
, mode_t mode
, Error
**errp
)
318 const char *fdset_id_str
;
320 /* Attempt dup of fd from fd set */
321 if (strstart(name
, "/dev/fdset/", &fdset_id_str
)) {
325 fdset_id
= qemu_parse_fdset(fdset_id_str
);
326 if (fdset_id
== -1) {
327 error_setg(errp
, "Could not parse fdset %s", name
);
332 dupfd
= monitor_fdset_dup_fd_add(fdset_id
, flags
);
334 error_setg_errno(errp
, errno
, "Could not dup FD for %s flags %x",
343 ret
= qemu_open_cloexec(name
, flags
, mode
);
346 const char *action
= flags
& O_CREAT
? "create" : "open";
348 /* Give more helpful error message for O_DIRECT */
349 if (errno
== EINVAL
&& (flags
& O_DIRECT
)) {
350 ret
= open(name
, flags
& ~O_DIRECT
, mode
);
353 error_setg(errp
, "Could not %s '%s': "
354 "filesystem does not support O_DIRECT",
356 errno
= EINVAL
; /* restore first open()'s errno */
360 #endif /* O_DIRECT */
361 error_setg_errno(errp
, errno
, "Could not %s '%s'",
369 int qemu_open(const char *name
, int flags
, Error
**errp
)
371 assert(!(flags
& O_CREAT
));
373 return qemu_open_internal(name
, flags
, 0, errp
);
377 int qemu_create(const char *name
, int flags
, mode_t mode
, Error
**errp
)
379 assert(!(flags
& O_CREAT
));
381 return qemu_open_internal(name
, flags
| O_CREAT
, mode
, errp
);
385 int qemu_open_old(const char *name
, int flags
, ...)
392 if (flags
& O_CREAT
) {
393 mode
= va_arg(ap
, int);
397 ret
= qemu_open_internal(name
, flags
, mode
, NULL
);
400 if (ret
== -1 && errno
== EINVAL
&& (flags
& O_DIRECT
)) {
401 error_report("file system may not support O_DIRECT");
402 errno
= EINVAL
; /* in case it was clobbered */
404 #endif /* O_DIRECT */
409 int qemu_close(int fd
)
413 /* Close fd that was dup'd from an fdset */
414 fdset_id
= monitor_fdset_dup_fd_find(fd
);
415 if (fdset_id
!= -1) {
420 monitor_fdset_dup_fd_remove(fd
);
430 * Delete a file from the filesystem, unless the filename is /dev/fdset/...
432 * Returns: On success, zero is returned. On error, -1 is returned,
433 * and errno is set appropriately.
435 int qemu_unlink(const char *name
)
437 if (g_str_has_prefix(name
, "/dev/fdset/")) {
445 * A variant of write(2) which handles partial write.
447 * Return the number of bytes transferred.
448 * Set errno if fewer than `count' bytes are written.
450 * This function don't work with non-blocking fd's.
451 * Any of the possibilities with non-blocking fd's is bad:
452 * - return a short write (then name is wrong)
453 * - busy wait adding (errno == EAGAIN) to the loop
455 ssize_t
qemu_write_full(int fd
, const void *buf
, size_t count
)
461 ret
= write(fd
, buf
, count
);
477 * Opens a socket with FD_CLOEXEC set
479 int qemu_socket(int domain
, int type
, int protocol
)
484 ret
= socket(domain
, type
| SOCK_CLOEXEC
, protocol
);
485 if (ret
!= -1 || errno
!= EINVAL
) {
489 ret
= socket(domain
, type
, protocol
);
491 qemu_set_cloexec(ret
);
498 * Accept a connection and set FD_CLOEXEC
500 int qemu_accept(int s
, struct sockaddr
*addr
, socklen_t
*addrlen
)
504 #ifdef CONFIG_ACCEPT4
505 ret
= accept4(s
, addr
, addrlen
, SOCK_CLOEXEC
);
506 if (ret
!= -1 || errno
!= ENOSYS
) {
510 ret
= accept(s
, addr
, addrlen
);
512 qemu_set_cloexec(ret
);
518 void qemu_set_hw_version(const char *version
)
520 hw_version
= version
;
523 const char *qemu_hw_version(void)
528 void fips_set_state(bool requested
)
532 FILE *fds
= fopen("/proc/sys/crypto/fips_enabled", "r");
534 fips_enabled
= (fgetc(fds
) == '1');
539 fips_enabled
= false;
540 #endif /* __linux__ */
543 fprintf(stderr
, "FIPS mode %s (requested %s)\n",
544 (fips_enabled
? "enabled" : "disabled"),
545 (requested
? "enabled" : "disabled"));
549 bool fips_get_state(void)
555 static void socket_cleanup(void)
561 int socket_init(void)
567 ret
= WSAStartup(MAKEWORD(2, 2), &Data
);
569 err
= WSAGetLastError();
570 fprintf(stderr
, "WSAStartup: %d\n", err
);
573 atexit(socket_cleanup
);
580 /* helper function for iov_send_recv() */
582 readv_writev(int fd
, const struct iovec
*iov
, int iov_cnt
, bool do_write
)
586 while (i
< iov_cnt
) {
588 ? write(fd
, iov
[i
].iov_base
, iov
[i
].iov_len
)
589 : read(fd
, iov
[i
].iov_base
, iov
[i
].iov_len
);
594 } else if (errno
== EINTR
) {
597 /* else it is some "other" error,
598 * only return if there was no data processed. */
610 readv(int fd
, const struct iovec
*iov
, int iov_cnt
)
612 return readv_writev(fd
, iov
, iov_cnt
, false);
616 writev(int fd
, const struct iovec
*iov
, int iov_cnt
)
618 return readv_writev(fd
, iov
, iov_cnt
, true);