2 * OS includes and handling of OS dependencies
4 * This header exists to pull in some common system headers that
5 * most code in QEMU will want, and to fix up some possible issues with
6 * it (missing defines, Windows weirdness, and so on).
8 * To avoid getting into possible circular include dependencies, this
9 * file should not include any other QEMU headers, with the exceptions
10 * of config-host.h, compiler.h, os-posix.h and os-win32.h, all of which
11 * are doing a similar job to this file and are under similar constraints.
13 * This header also contains prototypes for functions defined in
14 * os-*.c and util/oslib-*.c; those would probably be better split
15 * out into separate header files.
17 * In an ideal world this header would contain only:
18 * (1) things which everybody needs
19 * (2) things without which code would work on most platforms but
20 * fail to compile or misbehave on a minority of host OSes
22 * This work is licensed under the terms of the GNU GPL, version 2 or later.
23 * See the COPYING file in the top-level directory.
28 #include "config-host.h"
29 #include "qemu/compiler.h"
34 #include <sys/types.h>
52 #include <sys/signal.h>
58 #define WIFEXITED(x) 1
59 #define WEXITSTATUS(x) (x)
63 #include "sysemu/os-win32.h"
67 #include "sysemu/os-posix.h"
70 #if defined(CONFIG_SOLARIS) && CONFIG_SOLARIS_VERSION < 10
71 /* [u]int_fast*_t not in <sys/int_types.h> */
72 typedef unsigned char uint_fast8_t;
73 typedef unsigned int uint_fast16_t;
74 typedef signed int int_fast16_t;
84 #define MAP_ANONYMOUS MAP_ANON
87 #define ENOMEDIUM ENODEV
92 #if !defined(ECANCELED)
93 #define ECANCELED 4097
95 #if !defined(EMEDIUMTYPE)
96 #define EMEDIUMTYPE 4098
99 #define TIME_MAX LONG_MAX
103 #define MIN(a, b) (((a) < (b)) ? (a) : (b))
106 #define MAX(a, b) (((a) > (b)) ? (a) : (b))
109 /* Minimum function that returns zero only iff both values are zero.
110 * Intended for use with unsigned values only. */
112 #define MIN_NON_ZERO(a, b) (((a) != 0 && (a) < (b)) ? (a) : (b))
116 #define ROUND_UP(n,d) (((n) + (d) - 1) & -(d))
120 #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
124 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
127 int qemu_daemon(int nochdir, int noclose);
128 void *qemu_try_memalign(size_t alignment, size_t size);
129 void *qemu_memalign(size_t alignment, size_t size);
130 void *qemu_anon_ram_alloc(size_t size, uint64_t *align);
131 void qemu_vfree(void *ptr);
132 void qemu_anon_ram_free(void *ptr, size_t size);
134 #define QEMU_MADV_INVALID -1
136 #if defined(CONFIG_MADVISE)
138 #define QEMU_MADV_WILLNEED MADV_WILLNEED
139 #define QEMU_MADV_DONTNEED MADV_DONTNEED
141 #define QEMU_MADV_DONTFORK MADV_DONTFORK
143 #define QEMU_MADV_DONTFORK QEMU_MADV_INVALID
145 #ifdef MADV_MERGEABLE
146 #define QEMU_MADV_MERGEABLE MADV_MERGEABLE
148 #define QEMU_MADV_MERGEABLE QEMU_MADV_INVALID
150 #ifdef MADV_UNMERGEABLE
151 #define QEMU_MADV_UNMERGEABLE MADV_UNMERGEABLE
153 #define QEMU_MADV_UNMERGEABLE QEMU_MADV_INVALID
156 #define QEMU_MADV_DODUMP MADV_DODUMP
158 #define QEMU_MADV_DODUMP QEMU_MADV_INVALID
161 #define QEMU_MADV_DONTDUMP MADV_DONTDUMP
163 #define QEMU_MADV_DONTDUMP QEMU_MADV_INVALID
166 #define QEMU_MADV_HUGEPAGE MADV_HUGEPAGE
168 #define QEMU_MADV_HUGEPAGE QEMU_MADV_INVALID
171 #elif defined(CONFIG_POSIX_MADVISE)
173 #define QEMU_MADV_WILLNEED POSIX_MADV_WILLNEED
174 #define QEMU_MADV_DONTNEED POSIX_MADV_DONTNEED
175 #define QEMU_MADV_DONTFORK QEMU_MADV_INVALID
176 #define QEMU_MADV_MERGEABLE QEMU_MADV_INVALID
177 #define QEMU_MADV_UNMERGEABLE QEMU_MADV_INVALID
178 #define QEMU_MADV_DODUMP QEMU_MADV_INVALID
179 #define QEMU_MADV_DONTDUMP QEMU_MADV_INVALID
180 #define QEMU_MADV_HUGEPAGE QEMU_MADV_INVALID
184 #define QEMU_MADV_WILLNEED QEMU_MADV_INVALID
185 #define QEMU_MADV_DONTNEED QEMU_MADV_INVALID
186 #define QEMU_MADV_DONTFORK QEMU_MADV_INVALID
187 #define QEMU_MADV_MERGEABLE QEMU_MADV_INVALID
188 #define QEMU_MADV_UNMERGEABLE QEMU_MADV_INVALID
189 #define QEMU_MADV_DODUMP QEMU_MADV_INVALID
190 #define QEMU_MADV_DONTDUMP QEMU_MADV_INVALID
191 #define QEMU_MADV_HUGEPAGE QEMU_MADV_INVALID
195 int qemu_madvise(void *addr, size_t len, int advice);
197 int qemu_open(const char *name, int flags, ...);
198 int qemu_close(int fd);
200 #if defined(__HAIKU__) && defined(__i386__)
201 #define FMT_pid "%ld"
203 #define FMT_pid "%" PRId64
208 int qemu_create_pidfile(const char *filename);
209 int qemu_get_thread_id(void);
217 * Use the same value as Linux for now.
221 ssize_t readv(int fd, const struct iovec *iov, int iov_cnt);
222 ssize_t writev(int fd, const struct iovec *iov, int iov_cnt);
228 static inline void qemu_timersub(const struct timeval *val1,
229 const struct timeval *val2,
232 res->tv_sec = val1->tv_sec - val2->tv_sec;
233 if (val1->tv_usec < val2->tv_usec) {
235 res->tv_usec = val1->tv_usec - val2->tv_usec + 1000 * 1000;
237 res->tv_usec = val1->tv_usec - val2->tv_usec;
241 #define qemu_timersub timersub
244 void qemu_set_cloexec(int fd);
246 void qemu_set_version(const char *);
247 const char *qemu_get_version(void);
249 void fips_set_state(bool requested);
250 bool fips_get_state(void);
252 /* Return a dynamically allocated pathname denoting a file or directory that is
253 * appropriate for storing local state.
255 * @relative_pathname need not start with a directory separator; one will be
256 * added automatically.
258 * The caller is responsible for releasing the value returned with g_free()
261 char *qemu_get_local_state_pathname(const char *relative_pathname);
263 /* Find program directory, and save it for later usage with
264 * qemu_get_exec_dir().
265 * Try OS specific API first, if not working, parse from argv0. */
266 void qemu_init_exec_dir(const char *argv0);
268 /* Get the saved exec dir.
269 * Caller needs to release the returned string by g_free() */
270 char *qemu_get_exec_dir(void);
274 * @type: the auxiliary vector key to lookup
276 * Search the auxiliary vector for @type, returning the value
277 * or 0 if @type is not present.
279 unsigned long qemu_getauxval(unsigned long type);
281 void qemu_set_tty_echo(int fd, bool echo);
283 void os_mem_prealloc(int fd, char *area, size_t sz);
285 int qemu_read_password(char *buf, int buf_size);