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