1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27#ifndef QEMU_OSDEP_H
28#define QEMU_OSDEP_H
29
30#if !defined _FORTIFY_SOURCE && defined __OPTIMIZE__ && __OPTIMIZE__ && defined __linux__
31# define _FORTIFY_SOURCE 2
32#endif
33
34#include "config-host.h"
35#ifdef COMPILING_PER_TARGET
36#include CONFIG_TARGET
37#else
38#include "exec/poison.h"
39#endif
40
41
42
43
44
45#pragma GCC poison HOST_WORDS_BIGENDIAN
46
47
48
49
50
51#pragma GCC poison TARGET_WORDS_BIGENDIAN
52
53#include "qemu/compiler.h"
54
55
56
57
58
59#ifndef __STDC_CONSTANT_MACROS
60#define __STDC_CONSTANT_MACROS
61#endif
62#ifndef __STDC_LIMIT_MACROS
63#define __STDC_LIMIT_MACROS
64#endif
65#ifndef __STDC_FORMAT_MACROS
66#define __STDC_FORMAT_MACROS
67#endif
68
69
70
71
72#ifdef __APPLE__
73#define daemon qemu_fake_daemon_function
74#include <stdlib.h>
75#undef daemon
76QEMU_EXTERN_C int daemon(int, int);
77#endif
78
79#ifdef _WIN32
80
81#ifndef _WIN32_WINNT
82#define _WIN32_WINNT 0x0602
83#endif
84
85#ifndef WIN32_LEAN_AND_MEAN
86#define WIN32_LEAN_AND_MEAN
87#endif
88#endif
89
90
91#ifdef __MINGW32__
92#define __USE_MINGW_ANSI_STDIO 1
93#endif
94
95
96
97
98
99
100#ifdef __FreeBSD__
101#define _WANT_FREEBSD11_STAT
102#define _WANT_FREEBSD11_STATFS
103#define _WANT_FREEBSD11_DIRENT
104#define _WANT_KERNEL_ERRNO
105#define _WANT_SEMUN
106#endif
107
108#include <stdarg.h>
109#include <stddef.h>
110#include <stdbool.h>
111#include <stdint.h>
112#include <sys/types.h>
113#include <stdlib.h>
114#include <stdio.h>
115
116#include <string.h>
117#include <strings.h>
118#include <inttypes.h>
119#include <limits.h>
120
121
122#include <unistd.h>
123#include <time.h>
124#include <ctype.h>
125#include <errno.h>
126#include <fcntl.h>
127#include <getopt.h>
128#include <sys/stat.h>
129#include <sys/time.h>
130#include <assert.h>
131
132
133#include <setjmp.h>
134#include <signal.h>
135
136#ifdef CONFIG_IOVEC
137#include <sys/uio.h>
138#endif
139
140#if defined(__linux__) && defined(__sparc__)
141
142#include <sys/shm.h>
143#endif
144
145#ifndef _WIN32
146#include <sys/wait.h>
147#else
148#define WIFEXITED(x) 1
149#define WEXITSTATUS(x) (x)
150#endif
151
152#ifdef __APPLE__
153#include <AvailabilityMacros.h>
154#endif
155
156
157
158
159
160
161#include "glib-compat.h"
162
163#ifdef _WIN32
164#include "system/os-win32.h"
165#endif
166
167#if defined(CONFIG_POSIX) && !defined(EMSCRIPTEN)
168#include "system/os-posix.h"
169#endif
170
171#if defined(EMSCRIPTEN)
172#include "system/os-wasm.h"
173#endif
174
175#ifdef __cplusplus
176extern "C" {
177#endif
178
179#include "qemu/typedefs.h"
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195#ifdef __clang__
196#define coroutine_fn QEMU_ANNOTATE("coroutine_fn")
197#else
198#define coroutine_fn
199#endif
200
201
202
203
204
205#ifdef __clang__
206#define coroutine_mixed_fn QEMU_ANNOTATE("coroutine_mixed_fn")
207#else
208#define coroutine_mixed_fn
209#endif
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234#ifdef __clang__
235#define no_coroutine_fn QEMU_ANNOTATE("no_coroutine_fn")
236#else
237#define no_coroutine_fn
238#endif
239
240
241
242
243
244
245
246
247
248#ifdef __MINGW32__
249#undef assert
250#define assert(x) g_assert(x)
251#endif
252
253
254
255
256
257
258
259
260
261G_NORETURN
262void QEMU_ERROR("code path is reachable")
263 qemu_build_not_reached_always(void);
264#if defined(__OPTIMIZE__) && !defined(__NO_INLINE__)
265#define qemu_build_not_reached() qemu_build_not_reached_always()
266#else
267#define qemu_build_not_reached() g_assert_not_reached()
268#endif
269
270
271
272
273
274
275
276#define qemu_build_assert(test) while (!(test)) qemu_build_not_reached()
277
278
279
280
281
282
283
284
285#ifndef WCOREDUMP
286#define WCOREDUMP(status) 0
287#endif
288
289
290
291
292
293
294
295
296
297#ifdef NDEBUG
298#error building with NDEBUG is not supported
299#endif
300#ifdef G_DISABLE_ASSERT
301#error building with G_DISABLE_ASSERT is not supported
302#endif
303
304#ifndef OFF_MAX
305#define OFF_MAX (sizeof (off_t) == 8 ? INT64_MAX : INT32_MAX)
306#endif
307
308#ifndef O_LARGEFILE
309#define O_LARGEFILE 0
310#endif
311#ifndef O_BINARY
312#define O_BINARY 0
313#endif
314#ifndef MAP_ANONYMOUS
315#define MAP_ANONYMOUS MAP_ANON
316#endif
317#ifndef MAP_NORESERVE
318#define MAP_NORESERVE 0
319#endif
320#ifndef ENOMEDIUM
321#define ENOMEDIUM ENODEV
322#endif
323#if !defined(ENOTSUP)
324#define ENOTSUP 4096
325#endif
326#if !defined(ECANCELED)
327#define ECANCELED 4097
328#endif
329#if !defined(EMEDIUMTYPE)
330#define EMEDIUMTYPE 4098
331#endif
332#if !defined(ESHUTDOWN)
333#define ESHUTDOWN 4099
334#endif
335
336#define RETRY_ON_EINTR(expr) \
337 (__extension__ \
338 ({ typeof(expr) __result; \
339 do { \
340 __result = (expr); \
341 } while (__result == -1 && errno == EINTR); \
342 __result; }))
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357#define TYPE_SIGNED(t) (!((t)0 < (t)-1))
358
359
360
361
362#define TYPE_WIDTH(t) (sizeof(t) * CHAR_BIT)
363
364
365#define TYPE_MAXIMUM(t) \
366 ((t) (!TYPE_SIGNED(t) \
367 ? (t)-1 \
368 : ((((t)1 << (TYPE_WIDTH(t) - 2)) - 1) * 2 + 1)))
369
370#ifndef TIME_MAX
371#define TIME_MAX TYPE_MAXIMUM(time_t)
372#endif
373
374
375
376
377#ifdef HAVE_BROKEN_SIZE_MAX
378#undef SIZE_MAX
379#define SIZE_MAX ((size_t)-1)
380#endif
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403#define MIN_INTERNAL(a, b, _a, _b) \
404 ({ \
405 typeof(1 ? (a) : (b)) _a = (a), _b = (b); \
406 _a < _b ? _a : _b; \
407 })
408#undef MIN
409#define MIN(a, b) \
410 MIN_INTERNAL((a), (b), MAKE_IDENTIFIER(_a), MAKE_IDENTIFIER(_b))
411
412#define MAX_INTERNAL(a, b, _a, _b) \
413 ({ \
414 typeof(1 ? (a) : (b)) _a = (a), _b = (b); \
415 _a > _b ? _a : _b; \
416 })
417#undef MAX
418#define MAX(a, b) \
419 MAX_INTERNAL((a), (b), MAKE_IDENTIFIER(_a), MAKE_IDENTIFIER(_b))
420
421#ifdef __COVERITY__
422# define MIN_CONST(a, b) ((a) < (b) ? (a) : (b))
423# define MAX_CONST(a, b) ((a) > (b) ? (a) : (b))
424#else
425# define MIN_CONST(a, b) \
426 __builtin_choose_expr( \
427 __builtin_constant_p(a) && __builtin_constant_p(b), \
428 (a) < (b) ? (a) : (b), \
429 ((void)0))
430# define MAX_CONST(a, b) \
431 __builtin_choose_expr( \
432 __builtin_constant_p(a) && __builtin_constant_p(b), \
433 (a) > (b) ? (a) : (b), \
434 ((void)0))
435#endif
436
437
438
439
440
441
442
443
444
445#define MIN_NON_ZERO_INTERNAL(a, b, _a, _b) \
446 ({ \
447 typeof(1 ? (a) : (b)) _a = (a), _b = (b); \
448 _a == 0 ? _b : (_b == 0 || _b > _a) ? _a : _b; \
449 })
450#define MIN_NON_ZERO(a, b) \
451 MIN_NON_ZERO_INTERNAL((a), (b), MAKE_IDENTIFIER(_a), MAKE_IDENTIFIER(_b))
452
453
454
455
456
457#define QEMU_ALIGN_DOWN(n, m) ((n) / (m) * (m))
458
459
460
461
462
463#define QEMU_ALIGN_UP(n, m) QEMU_ALIGN_DOWN((n) + (m) - 1, (m))
464
465
466#define QEMU_IS_ALIGNED(n, m) (((n) % (m)) == 0)
467
468
469#define QEMU_ALIGN_PTR_DOWN(p, n) \
470 ((typeof(p))QEMU_ALIGN_DOWN((uintptr_t)(p), (n)))
471
472
473#define QEMU_ALIGN_PTR_UP(p, n) \
474 ((typeof(p))QEMU_ALIGN_UP((uintptr_t)(p), (n)))
475
476
477#define QEMU_PTR_IS_ALIGNED(p, n) QEMU_IS_ALIGNED((uintptr_t)(p), (n))
478
479
480
481
482
483
484#ifndef ROUND_DOWN
485#define ROUND_DOWN(n, d) ((n) & -(0 ? (n) : (d)))
486#endif
487
488
489
490
491
492
493#ifndef ROUND_UP
494#define ROUND_UP(n, d) ROUND_DOWN((n) + (d) - 1, (d))
495#endif
496
497#ifndef DIV_ROUND_UP
498#define DIV_ROUND_UP(n, d) (((n) + (d) - 1) / (d))
499#endif
500
501
502
503
504
505#define QEMU_IS_ARRAY(x) (!__builtin_types_compatible_p(typeof(x), \
506 typeof(&(x)[0])))
507#ifndef ARRAY_SIZE
508#define ARRAY_SIZE(x) ((sizeof(x) / sizeof((x)[0])) + \
509 QEMU_BUILD_BUG_ON_ZERO(!QEMU_IS_ARRAY(x)))
510#endif
511
512int qemu_daemon(int nochdir, int noclose);
513void *qemu_anon_ram_alloc(size_t size, uint64_t *align, bool shared,
514 bool noreserve);
515void qemu_anon_ram_free(void *ptr, size_t size);
516int qemu_shm_alloc(size_t size, Error **errp);
517
518#ifdef _WIN32
519#define HAVE_CHARDEV_SERIAL 1
520#define HAVE_CHARDEV_PARALLEL 1
521#else
522#if defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \
523 || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) \
524 || defined(__GLIBC__) || defined(__APPLE__)
525#define HAVE_CHARDEV_SERIAL 1
526#endif
527#if defined(__linux__) || defined(__FreeBSD__) \
528 || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
529#define HAVE_CHARDEV_PARALLEL 1
530#endif
531#endif
532
533#if defined(__HAIKU__)
534#define SIGIO SIGPOLL
535#endif
536
537#ifdef HAVE_MADVISE_WITHOUT_PROTOTYPE
538
539
540
541
542int madvise(char *, size_t, int);
543#endif
544
545#if defined(CONFIG_LINUX)
546#ifndef BUS_MCEERR_AR
547#define BUS_MCEERR_AR 4
548#endif
549#ifndef BUS_MCEERR_AO
550#define BUS_MCEERR_AO 5
551#endif
552#endif
553
554#if defined(__linux__) && \
555 (defined(__x86_64__) || defined(__arm__) || defined(__aarch64__) \
556 || defined(__powerpc64__))
557
558
559
560# define QEMU_VMALLOC_ALIGN (512 * 4096)
561#elif defined(__linux__) && defined(__s390x__)
562
563# define QEMU_VMALLOC_ALIGN (256 * 4096)
564#elif defined(__linux__) && defined(__sparc__)
565# define QEMU_VMALLOC_ALIGN MAX(qemu_real_host_page_size(), SHMLBA)
566#elif defined(__linux__) && defined(__loongarch__)
567
568
569
570
571
572# define QEMU_VMALLOC_ALIGN (qemu_real_host_page_size() * \
573 qemu_real_host_page_size() / sizeof(long))
574#else
575# define QEMU_VMALLOC_ALIGN qemu_real_host_page_size()
576#endif
577
578#ifdef CONFIG_POSIX
579struct qemu_signalfd_siginfo {
580 uint32_t ssi_signo;
581 int32_t ssi_errno;
582 int32_t ssi_code;
583 uint32_t ssi_pid;
584 uint32_t ssi_uid;
585 int32_t ssi_fd;
586 uint32_t ssi_tid;
587 uint32_t ssi_band;
588 uint32_t ssi_overrun;
589 uint32_t ssi_trapno;
590 int32_t ssi_status;
591 int32_t ssi_int;
592 uint64_t ssi_ptr;
593 uint64_t ssi_utime;
594 uint64_t ssi_stime;
595 uint64_t ssi_addr;
596
597 uint8_t pad[48];
598
599};
600
601int qemu_signalfd(const sigset_t *mask);
602void sigaction_invoke(struct sigaction *action,
603 struct qemu_signalfd_siginfo *info);
604#endif
605
606
607
608
609
610int qemu_open_old(const char *name, int flags, ...);
611int qemu_open(const char *name, int flags, Error **errp);
612int qemu_create(const char *name, int flags, mode_t mode, Error **errp);
613int qemu_close(int fd);
614int qemu_unlink(const char *name);
615#ifndef _WIN32
616int qemu_dup_flags(int fd, int flags);
617int qemu_dup(int fd);
618int qemu_lock_fd(int fd, int64_t start, int64_t len, bool exclusive);
619int qemu_unlock_fd(int fd, int64_t start, int64_t len);
620int qemu_lock_fd_test(int fd, int64_t start, int64_t len, bool exclusive);
621bool qemu_has_ofd_lock(void);
622#endif
623
624bool qemu_has_direct_io(void);
625
626#if defined(__HAIKU__) && defined(__i386__)
627#define FMT_pid "%ld"
628#elif defined(WIN64)
629#define FMT_pid "%" PRId64
630#else
631#define FMT_pid "%d"
632#endif
633
634bool qemu_write_pidfile(const char *pidfile, Error **errp);
635
636int qemu_get_thread_id(void);
637
638
639
640
641
642
643
644
645int qemu_kill_thread(int tid, int sig);
646
647#ifndef CONFIG_IOVEC
648struct iovec {
649 void *iov_base;
650 size_t iov_len;
651};
652
653
654
655#define IOV_MAX 1024
656
657ssize_t readv(int fd, const struct iovec *iov, int iov_cnt);
658ssize_t writev(int fd, const struct iovec *iov, int iov_cnt);
659#endif
660
661#ifdef _WIN32
662static inline void qemu_timersub(const struct timeval *val1,
663 const struct timeval *val2,
664 struct timeval *res)
665{
666 res->tv_sec = val1->tv_sec - val2->tv_sec;
667 if (val1->tv_usec < val2->tv_usec) {
668 res->tv_sec--;
669 res->tv_usec = val1->tv_usec - val2->tv_usec + 1000 * 1000;
670 } else {
671 res->tv_usec = val1->tv_usec - val2->tv_usec;
672 }
673}
674#else
675#define qemu_timersub timersub
676#endif
677
678ssize_t qemu_write_full(int fd, const void *buf, size_t count)
679 G_GNUC_WARN_UNUSED_RESULT;
680
681void qemu_set_cloexec(int fd);
682
683
684
685
686
687
688
689char *qemu_get_local_state_dir(void);
690
691
692
693
694
695
696
697
698unsigned long qemu_getauxval(unsigned long type);
699
700void qemu_set_tty_echo(int fd, bool echo);
701
702typedef struct ThreadContext ThreadContext;
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725bool qemu_prealloc_mem(int fd, char *area, size_t sz, int max_threads,
726 ThreadContext *tc, bool async, Error **errp);
727
728
729
730
731
732
733
734
735
736bool qemu_finish_async_prealloc_mem(Error **errp);
737
738
739
740
741
742
743
744
745
746char *qemu_get_pid_name(pid_t pid);
747
748
749
750
751static inline uintptr_t qemu_real_host_page_size(void)
752{
753 return getpagesize();
754}
755
756static inline intptr_t qemu_real_host_page_mask(void)
757{
758 return -(intptr_t)qemu_real_host_page_size();
759}
760
761
762
763
764
765
766static inline void qemu_reset_optind(void)
767{
768#ifdef HAVE_OPTRESET
769 optind = 1;
770 optreset = 1;
771#else
772 optind = 0;
773#endif
774}
775
776int qemu_fdatasync(int fd);
777
778
779
780
781
782
783
784
785
786
787void qemu_close_all_open_fd(const int *skip, unsigned int nskip);
788
789
790
791
792
793
794
795
796
797
798
799
800int qemu_msync(void *addr, size_t length, int fd);
801
802
803
804
805
806
807
808
809
810
811
812size_t qemu_get_host_physmem(void);
813
814
815
816
817
818#ifdef __APPLE__
819static inline void qemu_thread_jit_execute(void)
820{
821 pthread_jit_write_protect_np(true);
822}
823
824static inline void qemu_thread_jit_write(void)
825{
826 pthread_jit_write_protect_np(false);
827}
828#else
829static inline void qemu_thread_jit_write(void) {}
830static inline void qemu_thread_jit_execute(void) {}
831#endif
832
833
834
835
836#ifndef HAVE_SYSTEM_FUNCTION
837#define system platform_does_not_support_system
838static inline int platform_does_not_support_system(const char *command)
839{
840 errno = ENOSYS;
841 return -1;
842}
843#endif
844
845#ifdef __cplusplus
846}
847#endif
848
849#endif
850