]> git.proxmox.com Git - mirror_qemu.git/blame_incremental - include/qemu-common.h
icount: Add QemuOpts for icount
[mirror_qemu.git] / include / qemu-common.h
... / ...
CommitLineData
1
2/* Common header file that is included by all of QEMU.
3 *
4 * This file is supposed to be included only by .c files. No header file should
5 * depend on qemu-common.h, as this would easily lead to circular header
6 * dependencies.
7 *
8 * If a header file uses a definition from qemu-common.h, that definition
9 * must be moved to a separate header file, and the header that uses it
10 * must include that header.
11 */
12#ifndef QEMU_COMMON_H
13#define QEMU_COMMON_H
14
15#include "qemu/compiler.h"
16#include "config-host.h"
17#include "qemu/typedefs.h"
18
19#if defined(__arm__) || defined(__sparc__) || defined(__mips__) || defined(__hppa__) || defined(__ia64__)
20#define WORDS_ALIGNED
21#endif
22
23#define TFR(expr) do { if ((expr) != -1) break; } while (errno == EINTR)
24
25/* we put basic includes here to avoid repeating them in device drivers */
26#include <stdlib.h>
27#include <stdio.h>
28#include <stdarg.h>
29#include <stdbool.h>
30#include <string.h>
31#include <strings.h>
32#include <inttypes.h>
33#include <limits.h>
34#include <time.h>
35#include <ctype.h>
36#include <errno.h>
37#include <unistd.h>
38#include <fcntl.h>
39#include <sys/stat.h>
40#include <sys/time.h>
41#include <assert.h>
42#include <signal.h>
43#include "glib-compat.h"
44#include "qemu/option.h"
45
46#ifdef _WIN32
47#include "sysemu/os-win32.h"
48#endif
49
50#ifdef CONFIG_POSIX
51#include "sysemu/os-posix.h"
52#endif
53
54#ifndef O_LARGEFILE
55#define O_LARGEFILE 0
56#endif
57#ifndef O_BINARY
58#define O_BINARY 0
59#endif
60#ifndef MAP_ANONYMOUS
61#define MAP_ANONYMOUS MAP_ANON
62#endif
63#ifndef ENOMEDIUM
64#define ENOMEDIUM ENODEV
65#endif
66#if !defined(ENOTSUP)
67#define ENOTSUP 4096
68#endif
69#if !defined(ECANCELED)
70#define ECANCELED 4097
71#endif
72#if !defined(EMEDIUMTYPE)
73#define EMEDIUMTYPE 4098
74#endif
75#ifndef TIME_MAX
76#define TIME_MAX LONG_MAX
77#endif
78
79/* HOST_LONG_BITS is the size of a native pointer in bits. */
80#if UINTPTR_MAX == UINT32_MAX
81# define HOST_LONG_BITS 32
82#elif UINTPTR_MAX == UINT64_MAX
83# define HOST_LONG_BITS 64
84#else
85# error Unknown pointer size
86#endif
87
88typedef int (*fprintf_function)(FILE *f, const char *fmt, ...)
89 GCC_FMT_ATTR(2, 3);
90
91#ifdef _WIN32
92#define fsync _commit
93#if !defined(lseek)
94# define lseek _lseeki64
95#endif
96int qemu_ftruncate64(int, int64_t);
97#if !defined(ftruncate)
98# define ftruncate qemu_ftruncate64
99#endif
100
101static inline char *realpath(const char *path, char *resolved_path)
102{
103 _fullpath(resolved_path, path, _MAX_PATH);
104 return resolved_path;
105}
106#endif
107
108/* icount */
109void configure_icount(QemuOpts *opts, Error **errp);
110extern int use_icount;
111
112#include "qemu/osdep.h"
113#include "qemu/bswap.h"
114
115/* FIXME: Remove NEED_CPU_H. */
116#ifdef NEED_CPU_H
117#include "cpu.h"
118#endif /* !defined(NEED_CPU_H) */
119
120/* main function, renamed */
121#if defined(CONFIG_COCOA)
122int qemu_main(int argc, char **argv, char **envp);
123#endif
124
125void qemu_get_timedate(struct tm *tm, int offset);
126int qemu_timedate_diff(struct tm *tm);
127
128/**
129 * is_help_option:
130 * @s: string to test
131 *
132 * Check whether @s is one of the standard strings which indicate
133 * that the user is asking for a list of the valid values for a
134 * command option like -cpu or -M. The current accepted strings
135 * are 'help' and '?'. '?' is deprecated (it is a shell wildcard
136 * which makes it annoying to use in a reliable way) but provided
137 * for backwards compatibility.
138 *
139 * Returns: true if @s is a request for a list.
140 */
141static inline bool is_help_option(const char *s)
142{
143 return !strcmp(s, "?") || !strcmp(s, "help");
144}
145
146/* cutils.c */
147void pstrcpy(char *buf, int buf_size, const char *str);
148void strpadcpy(char *buf, int buf_size, const char *str, char pad);
149char *pstrcat(char *buf, int buf_size, const char *s);
150int strstart(const char *str, const char *val, const char **ptr);
151int stristart(const char *str, const char *val, const char **ptr);
152int qemu_strnlen(const char *s, int max_len);
153char *qemu_strsep(char **input, const char *delim);
154time_t mktimegm(struct tm *tm);
155int qemu_fls(int i);
156int qemu_fdatasync(int fd);
157int fcntl_setfl(int fd, int flag);
158int qemu_parse_fd(const char *param);
159
160int parse_uint(const char *s, unsigned long long *value, char **endptr,
161 int base);
162int parse_uint_full(const char *s, unsigned long long *value, int base);
163
164/*
165 * strtosz() suffixes used to specify the default treatment of an
166 * argument passed to strtosz() without an explicit suffix.
167 * These should be defined using upper case characters in the range
168 * A-Z, as strtosz() will use qemu_toupper() on the given argument
169 * prior to comparison.
170 */
171#define STRTOSZ_DEFSUFFIX_EB 'E'
172#define STRTOSZ_DEFSUFFIX_PB 'P'
173#define STRTOSZ_DEFSUFFIX_TB 'T'
174#define STRTOSZ_DEFSUFFIX_GB 'G'
175#define STRTOSZ_DEFSUFFIX_MB 'M'
176#define STRTOSZ_DEFSUFFIX_KB 'K'
177#define STRTOSZ_DEFSUFFIX_B 'B'
178int64_t strtosz(const char *nptr, char **end);
179int64_t strtosz_suffix(const char *nptr, char **end, const char default_suffix);
180int64_t strtosz_suffix_unit(const char *nptr, char **end,
181 const char default_suffix, int64_t unit);
182
183/* used to print char* safely */
184#define STR_OR_NULL(str) ((str) ? (str) : "null")
185
186/* path.c */
187void init_paths(const char *prefix);
188const char *path(const char *pathname);
189
190#define qemu_isalnum(c) isalnum((unsigned char)(c))
191#define qemu_isalpha(c) isalpha((unsigned char)(c))
192#define qemu_iscntrl(c) iscntrl((unsigned char)(c))
193#define qemu_isdigit(c) isdigit((unsigned char)(c))
194#define qemu_isgraph(c) isgraph((unsigned char)(c))
195#define qemu_islower(c) islower((unsigned char)(c))
196#define qemu_isprint(c) isprint((unsigned char)(c))
197#define qemu_ispunct(c) ispunct((unsigned char)(c))
198#define qemu_isspace(c) isspace((unsigned char)(c))
199#define qemu_isupper(c) isupper((unsigned char)(c))
200#define qemu_isxdigit(c) isxdigit((unsigned char)(c))
201#define qemu_tolower(c) tolower((unsigned char)(c))
202#define qemu_toupper(c) toupper((unsigned char)(c))
203#define qemu_isascii(c) isascii((unsigned char)(c))
204#define qemu_toascii(c) toascii((unsigned char)(c))
205
206void *qemu_oom_check(void *ptr);
207
208ssize_t qemu_write_full(int fd, const void *buf, size_t count)
209 QEMU_WARN_UNUSED_RESULT;
210ssize_t qemu_send_full(int fd, const void *buf, size_t count, int flags)
211 QEMU_WARN_UNUSED_RESULT;
212ssize_t qemu_recv_full(int fd, void *buf, size_t count, int flags)
213 QEMU_WARN_UNUSED_RESULT;
214
215#ifndef _WIN32
216int qemu_pipe(int pipefd[2]);
217/* like openpty() but also makes it raw; return master fd */
218int qemu_openpty_raw(int *aslave, char *pty_name);
219#endif
220
221#ifdef _WIN32
222/* MinGW needs type casts for the 'buf' and 'optval' arguments. */
223#define qemu_getsockopt(sockfd, level, optname, optval, optlen) \
224 getsockopt(sockfd, level, optname, (void *)optval, optlen)
225#define qemu_setsockopt(sockfd, level, optname, optval, optlen) \
226 setsockopt(sockfd, level, optname, (const void *)optval, optlen)
227#define qemu_recv(sockfd, buf, len, flags) recv(sockfd, (void *)buf, len, flags)
228#define qemu_sendto(sockfd, buf, len, flags, destaddr, addrlen) \
229 sendto(sockfd, (const void *)buf, len, flags, destaddr, addrlen)
230#else
231#define qemu_getsockopt(sockfd, level, optname, optval, optlen) \
232 getsockopt(sockfd, level, optname, optval, optlen)
233#define qemu_setsockopt(sockfd, level, optname, optval, optlen) \
234 setsockopt(sockfd, level, optname, optval, optlen)
235#define qemu_recv(sockfd, buf, len, flags) recv(sockfd, buf, len, flags)
236#define qemu_sendto(sockfd, buf, len, flags, destaddr, addrlen) \
237 sendto(sockfd, buf, len, flags, destaddr, addrlen)
238#endif
239
240/* Error handling. */
241
242void QEMU_NORETURN hw_error(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
243
244struct ParallelIOArg {
245 void *buffer;
246 int count;
247};
248
249typedef int (*DMA_transfer_handler) (void *opaque, int nchan, int pos, int size);
250
251typedef uint64_t pcibus_t;
252
253typedef struct PCIHostDeviceAddress {
254 unsigned int domain;
255 unsigned int bus;
256 unsigned int slot;
257 unsigned int function;
258} PCIHostDeviceAddress;
259
260void tcg_exec_init(unsigned long tb_size);
261bool tcg_enabled(void);
262
263void cpu_exec_init_all(void);
264
265/* CPU save/load. */
266#ifdef CPU_SAVE_VERSION
267void cpu_save(QEMUFile *f, void *opaque);
268int cpu_load(QEMUFile *f, void *opaque, int version_id);
269#endif
270
271/* Unblock cpu */
272void qemu_cpu_kick_self(void);
273
274/* work queue */
275struct qemu_work_item {
276 struct qemu_work_item *next;
277 void (*func)(void *data);
278 void *data;
279 int done;
280 bool free;
281};
282
283
284/**
285 * Sends a (part of) iovec down a socket, yielding when the socket is full, or
286 * Receives data into a (part of) iovec from a socket,
287 * yielding when there is no data in the socket.
288 * The same interface as qemu_sendv_recvv(), with added yielding.
289 * XXX should mark these as coroutine_fn
290 */
291ssize_t qemu_co_sendv_recvv(int sockfd, struct iovec *iov, unsigned iov_cnt,
292 size_t offset, size_t bytes, bool do_send);
293#define qemu_co_recvv(sockfd, iov, iov_cnt, offset, bytes) \
294 qemu_co_sendv_recvv(sockfd, iov, iov_cnt, offset, bytes, false)
295#define qemu_co_sendv(sockfd, iov, iov_cnt, offset, bytes) \
296 qemu_co_sendv_recvv(sockfd, iov, iov_cnt, offset, bytes, true)
297
298/**
299 * The same as above, but with just a single buffer
300 */
301ssize_t qemu_co_send_recv(int sockfd, void *buf, size_t bytes, bool do_send);
302#define qemu_co_recv(sockfd, buf, bytes) \
303 qemu_co_send_recv(sockfd, buf, bytes, false)
304#define qemu_co_send(sockfd, buf, bytes) \
305 qemu_co_send_recv(sockfd, buf, bytes, true)
306
307typedef struct QEMUIOVector {
308 struct iovec *iov;
309 int niov;
310 int nalloc;
311 size_t size;
312} QEMUIOVector;
313
314void qemu_iovec_init(QEMUIOVector *qiov, int alloc_hint);
315void qemu_iovec_init_external(QEMUIOVector *qiov, struct iovec *iov, int niov);
316void qemu_iovec_add(QEMUIOVector *qiov, void *base, size_t len);
317void qemu_iovec_concat(QEMUIOVector *dst,
318 QEMUIOVector *src, size_t soffset, size_t sbytes);
319size_t qemu_iovec_concat_iov(QEMUIOVector *dst,
320 struct iovec *src_iov, unsigned int src_cnt,
321 size_t soffset, size_t sbytes);
322bool qemu_iovec_is_zero(QEMUIOVector *qiov);
323void qemu_iovec_destroy(QEMUIOVector *qiov);
324void qemu_iovec_reset(QEMUIOVector *qiov);
325size_t qemu_iovec_to_buf(QEMUIOVector *qiov, size_t offset,
326 void *buf, size_t bytes);
327size_t qemu_iovec_from_buf(QEMUIOVector *qiov, size_t offset,
328 const void *buf, size_t bytes);
329size_t qemu_iovec_memset(QEMUIOVector *qiov, size_t offset,
330 int fillc, size_t bytes);
331ssize_t qemu_iovec_compare(QEMUIOVector *a, QEMUIOVector *b);
332void qemu_iovec_clone(QEMUIOVector *dest, const QEMUIOVector *src, void *buf);
333void qemu_iovec_discard_back(QEMUIOVector *qiov, size_t bytes);
334
335bool buffer_is_zero(const void *buf, size_t len);
336
337void qemu_progress_init(int enabled, float min_skip);
338void qemu_progress_end(void);
339void qemu_progress_print(float delta, int max);
340const char *qemu_get_vm_name(void);
341
342#define QEMU_FILE_TYPE_BIOS 0
343#define QEMU_FILE_TYPE_KEYMAP 1
344char *qemu_find_file(int type, const char *name);
345
346/* OS specific functions */
347void os_setup_early_signal_handling(void);
348char *os_find_datadir(void);
349void os_parse_cmd_args(int index, const char *optarg);
350void os_pidfile_error(void);
351
352/* Convert a byte between binary and BCD. */
353static inline uint8_t to_bcd(uint8_t val)
354{
355 return ((val / 10) << 4) | (val % 10);
356}
357
358static inline uint8_t from_bcd(uint8_t val)
359{
360 return ((val >> 4) * 10) + (val & 0x0f);
361}
362
363/* compute with 96 bit intermediate result: (a*b)/c */
364static inline uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
365{
366 union {
367 uint64_t ll;
368 struct {
369#ifdef HOST_WORDS_BIGENDIAN
370 uint32_t high, low;
371#else
372 uint32_t low, high;
373#endif
374 } l;
375 } u, res;
376 uint64_t rl, rh;
377
378 u.ll = a;
379 rl = (uint64_t)u.l.low * (uint64_t)b;
380 rh = (uint64_t)u.l.high * (uint64_t)b;
381 rh += (rl >> 32);
382 res.l.high = rh / c;
383 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
384 return res.ll;
385}
386
387/* Round number down to multiple */
388#define QEMU_ALIGN_DOWN(n, m) ((n) / (m) * (m))
389
390/* Round number up to multiple */
391#define QEMU_ALIGN_UP(n, m) QEMU_ALIGN_DOWN((n) + (m) - 1, (m))
392
393static inline bool is_power_of_2(uint64_t value)
394{
395 if (!value) {
396 return 0;
397 }
398
399 return !(value & (value - 1));
400}
401
402/* round down to the nearest power of 2*/
403int64_t pow2floor(int64_t value);
404
405#include "qemu/module.h"
406
407/*
408 * Implementation of ULEB128 (http://en.wikipedia.org/wiki/LEB128)
409 * Input is limited to 14-bit numbers
410 */
411
412int uleb128_encode_small(uint8_t *out, uint32_t n);
413int uleb128_decode_small(const uint8_t *in, uint32_t *n);
414
415/* unicode.c */
416int mod_utf8_codepoint(const char *s, size_t n, char **end);
417
418/*
419 * Hexdump a buffer to a file. An optional string prefix is added to every line
420 */
421
422void qemu_hexdump(const char *buf, FILE *fp, const char *prefix, size_t size);
423
424/* vector definitions */
425#ifdef __ALTIVEC__
426#include <altivec.h>
427/* The altivec.h header says we're allowed to undef these for
428 * C++ compatibility. Here we don't care about C++, but we
429 * undef them anyway to avoid namespace pollution.
430 */
431#undef vector
432#undef pixel
433#undef bool
434#define VECTYPE __vector unsigned char
435#define SPLAT(p) vec_splat(vec_ld(0, p), 0)
436#define ALL_EQ(v1, v2) vec_all_eq(v1, v2)
437/* altivec.h may redefine the bool macro as vector type.
438 * Reset it to POSIX semantics. */
439#define bool _Bool
440#elif defined __SSE2__
441#include <emmintrin.h>
442#define VECTYPE __m128i
443#define SPLAT(p) _mm_set1_epi8(*(p))
444#define ALL_EQ(v1, v2) (_mm_movemask_epi8(_mm_cmpeq_epi8(v1, v2)) == 0xFFFF)
445#else
446#define VECTYPE unsigned long
447#define SPLAT(p) (*(p) * (~0UL / 255))
448#define ALL_EQ(v1, v2) ((v1) == (v2))
449#endif
450
451#define BUFFER_FIND_NONZERO_OFFSET_UNROLL_FACTOR 8
452static inline bool
453can_use_buffer_find_nonzero_offset(const void *buf, size_t len)
454{
455 return (len % (BUFFER_FIND_NONZERO_OFFSET_UNROLL_FACTOR
456 * sizeof(VECTYPE)) == 0
457 && ((uintptr_t) buf) % sizeof(VECTYPE) == 0);
458}
459size_t buffer_find_nonzero_offset(const void *buf, size_t len);
460
461/*
462 * helper to parse debug environment variables
463 */
464int parse_debug_env(const char *name, int max, int initial);
465
466const char *qemu_ether_ntoa(const MACAddr *mac);
467
468#endif