]> git.proxmox.com Git - mirror_qemu.git/blame - util/osdep.c
util: introduce qemu_open and qemu_create with error reporting
[mirror_qemu.git] / util / osdep.c
CommitLineData
ea88812f
FB
1/*
2 * QEMU low level functions
5fafdf24 3 *
ea88812f 4 * Copyright (c) 2003 Fabrice Bellard
5fafdf24 5 *
ea88812f
FB
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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
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
22 * THE SOFTWARE.
23 */
aafd7584 24#include "qemu/osdep.h"
ebb3d49c 25#include "qapi/error.h"
f582af58
PB
26
27/* Needed early for CONFIG_BSD etc. */
f582af58 28
dfe5fff3 29#ifdef CONFIG_SOLARIS
605686cd 30#include <sys/statvfs.h>
e78815a5
AF
31/* See MySQL bug #7156 (http://bugs.mysql.com/bug.php?id=7156) for
32 discussion about Solaris header problems */
d7df0b41 33extern int madvise(char *, size_t, int);
605686cd 34#endif
ea88812f 35
511d2b14 36#include "qemu-common.h"
f348b6d1 37#include "qemu/cutils.h"
1de7afc9 38#include "qemu/sockets.h"
d49b6836 39#include "qemu/error-report.h"
83c9089e 40#include "monitor/monitor.h"
03ff3ca3 41
0f66998f
PM
42static bool fips_enabled = false;
43
d494352c 44static const char *hw_version = QEMU_HW_VERSION;
93bfef4c 45
128aa589
PB
46int socket_set_cork(int fd, int v)
47{
48#if defined(SOL_TCP) && defined(TCP_CORK)
4bd1afbd 49 return qemu_setsockopt(fd, SOL_TCP, TCP_CORK, &v, sizeof(v));
128aa589
PB
50#else
51 return 0;
52#endif
53}
54
bf1c852a
MK
55int socket_set_nodelay(int fd)
56{
57 int v = 1;
4bd1afbd 58 return qemu_setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &v, sizeof(v));
bf1c852a
MK
59}
60
e78815a5
AF
61int qemu_madvise(void *addr, size_t len, int advice)
62{
63 if (advice == QEMU_MADV_INVALID) {
64 errno = EINVAL;
65 return -1;
66 }
67#if defined(CONFIG_MADVISE)
68 return madvise(addr, len, advice);
69#elif defined(CONFIG_POSIX_MADVISE)
70 return posix_madvise(addr, len, advice);
71#else
72 errno = EINVAL;
73 return -1;
74#endif
75}
76
5fa64b31
EC
77static int qemu_mprotect__osdep(void *addr, size_t size, int prot)
78{
79 g_assert(!((uintptr_t)addr & ~qemu_real_host_page_mask));
80 g_assert(!(size & ~qemu_real_host_page_mask));
81
82#ifdef _WIN32
83 DWORD old_protect;
84
85 if (!VirtualProtect(addr, size, prot, &old_protect)) {
cf0c76cd
PMD
86 g_autofree gchar *emsg = g_win32_error_message(GetLastError());
87 error_report("%s: VirtualProtect failed: %s", __func__, emsg);
5fa64b31
EC
88 return -1;
89 }
90 return 0;
91#else
92 if (mprotect(addr, size, prot)) {
93 error_report("%s: mprotect failed: %s", __func__, strerror(errno));
94 return -1;
95 }
96 return 0;
97#endif
98}
99
100int qemu_mprotect_rwx(void *addr, size_t size)
101{
102#ifdef _WIN32
103 return qemu_mprotect__osdep(addr, size, PAGE_EXECUTE_READWRITE);
104#else
105 return qemu_mprotect__osdep(addr, size, PROT_READ | PROT_WRITE | PROT_EXEC);
106#endif
107}
108
109int qemu_mprotect_none(void *addr, size_t size)
110{
111#ifdef _WIN32
112 return qemu_mprotect__osdep(addr, size, PAGE_NOACCESS);
113#else
114 return qemu_mprotect__osdep(addr, size, PROT_NONE);
115#endif
116}
117
adb696f3 118#ifndef _WIN32
ca749954
FZ
119
120static int fcntl_op_setlk = -1;
121static int fcntl_op_getlk = -1;
122
adb696f3
CB
123/*
124 * Dups an fd and sets the flags
125 */
60efffa4 126int qemu_dup_flags(int fd, int flags)
adb696f3
CB
127{
128 int ret;
129 int serrno;
130 int dup_flags;
adb696f3 131
761d1ddf 132 ret = qemu_dup(fd);
adb696f3
CB
133 if (ret == -1) {
134 goto fail;
135 }
136
137 dup_flags = fcntl(ret, F_GETFL);
138 if (dup_flags == -1) {
139 goto fail;
140 }
141
142 if ((flags & O_SYNC) != (dup_flags & O_SYNC)) {
143 errno = EINVAL;
144 goto fail;
145 }
146
147 /* Set/unset flags that we can with fcntl */
3b6eda2f 148 if (fcntl(ret, F_SETFL, flags) == -1) {
adb696f3
CB
149 goto fail;
150 }
151
152 /* Truncate the file in the cases that open() would truncate it */
153 if (flags & O_TRUNC ||
154 ((flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))) {
155 if (ftruncate(ret, 0) == -1) {
156 goto fail;
157 }
158 }
159
160 return ret;
161
162fail:
163 serrno = errno;
164 if (ret != -1) {
165 close(ret);
166 }
167 errno = serrno;
168 return -1;
169}
0100fbbe 170
761d1ddf
FZ
171int qemu_dup(int fd)
172{
173 int ret;
174#ifdef F_DUPFD_CLOEXEC
175 ret = fcntl(fd, F_DUPFD_CLOEXEC, 0);
176#else
177 ret = dup(fd);
178 if (ret != -1) {
179 qemu_set_cloexec(ret);
180 }
181#endif
182 return ret;
183}
184
0100fbbe
PB
185static int qemu_parse_fdset(const char *param)
186{
187 return qemu_parse_fd(param);
188}
13461fdb 189
ca749954
FZ
190static void qemu_probe_lock_ops(void)
191{
192 if (fcntl_op_setlk == -1) {
193#ifdef F_OFD_SETLK
194 int fd;
195 int ret;
196 struct flock fl = {
197 .l_whence = SEEK_SET,
198 .l_start = 0,
199 .l_len = 0,
200 .l_type = F_WRLCK,
201 };
202
203 fd = open("/dev/null", O_RDWR);
204 if (fd < 0) {
205 fprintf(stderr,
206 "Failed to open /dev/null for OFD lock probing: %s\n",
207 strerror(errno));
208 fcntl_op_setlk = F_SETLK;
209 fcntl_op_getlk = F_GETLK;
210 return;
211 }
212 ret = fcntl(fd, F_OFD_GETLK, &fl);
213 close(fd);
214 if (!ret) {
215 fcntl_op_setlk = F_OFD_SETLK;
216 fcntl_op_getlk = F_OFD_GETLK;
217 } else {
218 fcntl_op_setlk = F_SETLK;
219 fcntl_op_getlk = F_GETLK;
220 }
221#else
222 fcntl_op_setlk = F_SETLK;
223 fcntl_op_getlk = F_GETLK;
224#endif
225 }
226}
227
228bool qemu_has_ofd_lock(void)
229{
230 qemu_probe_lock_ops();
231#ifdef F_OFD_SETLK
232 return fcntl_op_setlk == F_OFD_SETLK;
233#else
234 return false;
235#endif
236}
237
13461fdb
FZ
238static int qemu_lock_fcntl(int fd, int64_t start, int64_t len, int fl_type)
239{
13461fdb
FZ
240 int ret;
241 struct flock fl = {
242 .l_whence = SEEK_SET,
243 .l_start = start,
244 .l_len = len,
245 .l_type = fl_type,
246 };
ca749954 247 qemu_probe_lock_ops();
f86428a1
FZ
248 do {
249 ret = fcntl(fd, fcntl_op_setlk, &fl);
250 } while (ret == -1 && errno == EINTR);
13461fdb 251 return ret == -1 ? -errno : 0;
13461fdb
FZ
252}
253
254int qemu_lock_fd(int fd, int64_t start, int64_t len, bool exclusive)
255{
256 return qemu_lock_fcntl(fd, start, len, exclusive ? F_WRLCK : F_RDLCK);
257}
258
259int qemu_unlock_fd(int fd, int64_t start, int64_t len)
260{
261 return qemu_lock_fcntl(fd, start, len, F_UNLCK);
262}
263
264int qemu_lock_fd_test(int fd, int64_t start, int64_t len, bool exclusive)
265{
13461fdb
FZ
266 int ret;
267 struct flock fl = {
268 .l_whence = SEEK_SET,
269 .l_start = start,
270 .l_len = len,
271 .l_type = exclusive ? F_WRLCK : F_RDLCK,
272 };
ca749954
FZ
273 qemu_probe_lock_ops();
274 ret = fcntl(fd, fcntl_op_getlk, &fl);
13461fdb
FZ
275 if (ret == -1) {
276 return -errno;
277 } else {
278 return fl.l_type == F_UNLCK ? 0 : -EAGAIN;
279 }
13461fdb 280}
adb696f3 281#endif
03ff3ca3 282
c2069ff6
DB
283static int qemu_open_cloexec(const char *name, int flags, mode_t mode)
284{
285 int ret;
286#ifdef O_CLOEXEC
287 ret = open(name, flags | O_CLOEXEC, mode);
288#else
289 ret = open(name, flags, mode);
290 if (ret >= 0) {
291 qemu_set_cloexec(ret);
292 }
293#endif
294 return ret;
295}
296
40ff6d7e
KW
297/*
298 * Opens a file with FD_CLOEXEC set
299 */
bf93d2ad 300static int
ebb3d49c 301qemu_open_internal(const char *name, int flags, mode_t mode, Error **errp)
40ff6d7e
KW
302{
303 int ret;
40ff6d7e 304
adb696f3
CB
305#ifndef _WIN32
306 const char *fdset_id_str;
307
308 /* Attempt dup of fd from fd set */
309 if (strstart(name, "/dev/fdset/", &fdset_id_str)) {
310 int64_t fdset_id;
60efffa4 311 int dupfd;
adb696f3
CB
312
313 fdset_id = qemu_parse_fdset(fdset_id_str);
314 if (fdset_id == -1) {
ebb3d49c 315 error_setg(errp, "Could not parse fdset %s", name);
adb696f3
CB
316 errno = EINVAL;
317 return -1;
318 }
319
60efffa4 320 dupfd = monitor_fdset_dup_fd_add(fdset_id, flags);
adb696f3 321 if (dupfd == -1) {
ebb3d49c
DB
322 error_setg_errno(errp, errno, "Could not dup FD for %s flags %x",
323 name, flags);
adb696f3
CB
324 return -1;
325 }
326
adb696f3
CB
327 return dupfd;
328 }
329#endif
330
bf93d2ad
DB
331 ret = qemu_open_cloexec(name, flags, mode);
332
ebb3d49c
DB
333 if (ret == -1) {
334 const char *action = flags & O_CREAT ? "create" : "open";
335 error_setg_errno(errp, errno, "Could not %s '%s'",
336 action, name);
337 }
338
339
bf93d2ad
DB
340 return ret;
341}
342
40ff6d7e 343
c490af57
DB
344int qemu_open(const char *name, int flags, Error **errp)
345{
346 assert(!(flags & O_CREAT));
347
348 return qemu_open_internal(name, flags, 0, errp);
349}
350
351
352int qemu_create(const char *name, int flags, mode_t mode, Error **errp)
353{
354 assert(!(flags & O_CREAT));
355
356 return qemu_open_internal(name, flags | O_CREAT, mode, errp);
357}
358
359
bf93d2ad
DB
360int qemu_open_old(const char *name, int flags, ...)
361{
362 va_list ap;
363 mode_t mode = 0;
364 int ret;
365
366 va_start(ap, flags);
367 if (flags & O_CREAT) {
40ff6d7e 368 mode = va_arg(ap, int);
40ff6d7e 369 }
bf93d2ad 370 va_end(ap);
40ff6d7e 371
ebb3d49c 372 ret = qemu_open_internal(name, flags, mode, NULL);
40ff6d7e 373
a5813077
SH
374#ifdef O_DIRECT
375 if (ret == -1 && errno == EINVAL && (flags & O_DIRECT)) {
376 error_report("file system may not support O_DIRECT");
377 errno = EINVAL; /* in case it was clobbered */
378 }
379#endif /* O_DIRECT */
380
40ff6d7e
KW
381 return ret;
382}
383
2e1e79da
CB
384int qemu_close(int fd)
385{
adb696f3
CB
386 int64_t fdset_id;
387
388 /* Close fd that was dup'd from an fdset */
389 fdset_id = monitor_fdset_dup_fd_find(fd);
390 if (fdset_id != -1) {
391 int ret;
392
393 ret = close(fd);
394 if (ret == 0) {
395 monitor_fdset_dup_fd_remove(fd);
396 }
397
398 return ret;
399 }
400
2e1e79da
CB
401 return close(fd);
402}
403
ee13240e
MAL
404/*
405 * Delete a file from the filesystem, unless the filename is /dev/fdset/...
406 *
407 * Returns: On success, zero is returned. On error, -1 is returned,
408 * and errno is set appropriately.
409 */
410int qemu_unlink(const char *name)
411{
412 if (g_str_has_prefix(name, "/dev/fdset/")) {
413 return 0;
414 }
415
416 return unlink(name);
417}
418
7b5f699d
KS
419/*
420 * A variant of write(2) which handles partial write.
421 *
422 * Return the number of bytes transferred.
423 * Set errno if fewer than `count' bytes are written.
1298cb68
JQ
424 *
425 * This function don't work with non-blocking fd's.
426 * Any of the possibilities with non-bloking fd's is bad:
427 * - return a short write (then name is wrong)
428 * - busy wait adding (errno == EAGAIN) to the loop
7b5f699d
KS
429 */
430ssize_t qemu_write_full(int fd, const void *buf, size_t count)
431{
432 ssize_t ret = 0;
433 ssize_t total = 0;
434
435 while (count) {
436 ret = write(fd, buf, count);
437 if (ret < 0) {
438 if (errno == EINTR)
439 continue;
440 break;
441 }
442
443 count -= ret;
444 buf += ret;
445 total += ret;
446 }
447
448 return total;
449}
450
40ff6d7e
KW
451/*
452 * Opens a socket with FD_CLOEXEC set
453 */
454int qemu_socket(int domain, int type, int protocol)
455{
456 int ret;
457
458#ifdef SOCK_CLOEXEC
459 ret = socket(domain, type | SOCK_CLOEXEC, protocol);
3a03bfa5
AP
460 if (ret != -1 || errno != EINVAL) {
461 return ret;
462 }
463#endif
40ff6d7e
KW
464 ret = socket(domain, type, protocol);
465 if (ret >= 0) {
466 qemu_set_cloexec(ret);
467 }
40ff6d7e
KW
468
469 return ret;
470}
471
472/*
473 * Accept a connection and set FD_CLOEXEC
474 */
475int qemu_accept(int s, struct sockaddr *addr, socklen_t *addrlen)
476{
477 int ret;
478
479#ifdef CONFIG_ACCEPT4
480 ret = accept4(s, addr, addrlen, SOCK_CLOEXEC);
347ed55c 481 if (ret != -1 || errno != ENOSYS) {
3a03bfa5
AP
482 return ret;
483 }
484#endif
40ff6d7e
KW
485 ret = accept(s, addr, addrlen);
486 if (ret >= 0) {
487 qemu_set_cloexec(ret);
488 }
40ff6d7e
KW
489
490 return ret;
491}
993295fe 492
35c2c8dc 493void qemu_set_hw_version(const char *version)
93bfef4c 494{
35c2c8dc 495 hw_version = version;
93bfef4c
CV
496}
497
35c2c8dc 498const char *qemu_hw_version(void)
93bfef4c 499{
35c2c8dc 500 return hw_version;
93bfef4c 501}
0f66998f
PM
502
503void fips_set_state(bool requested)
504{
505#ifdef __linux__
506 if (requested) {
507 FILE *fds = fopen("/proc/sys/crypto/fips_enabled", "r");
508 if (fds != NULL) {
509 fips_enabled = (fgetc(fds) == '1');
510 fclose(fds);
511 }
512 }
513#else
514 fips_enabled = false;
515#endif /* __linux__ */
516
517#ifdef _FIPS_DEBUG
518 fprintf(stderr, "FIPS mode %s (requested %s)\n",
7d37435b
PB
519 (fips_enabled ? "enabled" : "disabled"),
520 (requested ? "enabled" : "disabled"));
0f66998f
PM
521#endif
522}
523
524bool fips_get_state(void)
525{
526 return fips_enabled;
527}
0100fbbe 528
d3bf825e
MAL
529#ifdef _WIN32
530static void socket_cleanup(void)
531{
532 WSACleanup();
533}
534#endif
535
536int socket_init(void)
537{
538#ifdef _WIN32
539 WSADATA Data;
540 int ret, err;
541
542 ret = WSAStartup(MAKEWORD(2, 2), &Data);
543 if (ret != 0) {
544 err = WSAGetLastError();
545 fprintf(stderr, "WSAStartup: %d\n", err);
546 return -1;
547 }
548 atexit(socket_cleanup);
549#endif
550 return 0;
551}
9adea5f7 552
ae2990c2 553
9adea5f7
PB
554#ifndef CONFIG_IOVEC
555/* helper function for iov_send_recv() */
556static ssize_t
557readv_writev(int fd, const struct iovec *iov, int iov_cnt, bool do_write)
558{
559 unsigned i = 0;
560 ssize_t ret = 0;
561 while (i < iov_cnt) {
562 ssize_t r = do_write
563 ? write(fd, iov[i].iov_base, iov[i].iov_len)
564 : read(fd, iov[i].iov_base, iov[i].iov_len);
565 if (r > 0) {
566 ret += r;
567 } else if (!r) {
568 break;
569 } else if (errno == EINTR) {
570 continue;
571 } else {
572 /* else it is some "other" error,
573 * only return if there was no data processed. */
574 if (ret == 0) {
575 ret = -1;
576 }
577 break;
578 }
579 i++;
580 }
581 return ret;
582}
583
584ssize_t
585readv(int fd, const struct iovec *iov, int iov_cnt)
586{
587 return readv_writev(fd, iov, iov_cnt, false);
588}
589
590ssize_t
591writev(int fd, const struct iovec *iov, int iov_cnt)
592{
593 return readv_writev(fd, iov, iov_cnt, true);
594}
595#endif