Merge commit 'afb63ebd0a9599312c27ecceb839a399740e00ef' into upstream-merge
[qemu-kvm.git] / qemu-common.h
blob15d9e4ed7122cc85a9510b2f5887fbde3c6882b0
2 /* Common header file that is included by all of qemu. */
3 #ifndef QEMU_COMMON_H
4 #define QEMU_COMMON_H
6 #include "compiler.h"
7 #include "config-host.h"
9 #if defined(__arm__) || defined(__sparc__) || defined(__mips__) || defined(__hppa__) || defined(__ia64__)
10 #define WORDS_ALIGNED
11 #endif
13 #define TFR(expr) do { if ((expr) != -1) break; } while (errno == EINTR)
15 typedef struct QEMUTimer QEMUTimer;
16 typedef struct QEMUFile QEMUFile;
17 typedef struct DeviceState DeviceState;
19 struct Monitor;
20 typedef struct Monitor Monitor;
21 typedef struct MigrationParams MigrationParams;
23 /* we put basic includes here to avoid repeating them in device drivers */
24 #include <stdlib.h>
25 #include <stdio.h>
26 #include <stdarg.h>
27 #include <stdbool.h>
28 #include <string.h>
29 #include <strings.h>
30 #include <inttypes.h>
31 #include <limits.h>
32 #include <time.h>
33 #include <ctype.h>
34 #include <errno.h>
35 #include <unistd.h>
36 #include <fcntl.h>
37 #include <sys/stat.h>
38 #include <sys/time.h>
39 #include <assert.h>
40 #include <signal.h>
41 #include <glib.h>
43 #ifdef _WIN32
44 #include "qemu-os-win32.h"
45 #endif
47 #ifdef CONFIG_POSIX
48 #include "qemu-os-posix.h"
49 #endif
51 #ifndef O_LARGEFILE
52 #define O_LARGEFILE 0
53 #endif
54 #ifndef O_BINARY
55 #define O_BINARY 0
56 #endif
57 #ifndef MAP_ANONYMOUS
58 #define MAP_ANONYMOUS MAP_ANON
59 #endif
60 #ifndef ENOMEDIUM
61 #define ENOMEDIUM ENODEV
62 #endif
63 #if !defined(ENOTSUP)
64 #define ENOTSUP 4096
65 #endif
66 #if !defined(ECANCELED)
67 #define ECANCELED 4097
68 #endif
69 #ifndef TIME_MAX
70 #define TIME_MAX LONG_MAX
71 #endif
73 /* HOST_LONG_BITS is the size of a native pointer in bits. */
74 #if UINTPTR_MAX == UINT32_MAX
75 # define HOST_LONG_BITS 32
76 #elif UINTPTR_MAX == UINT64_MAX
77 # define HOST_LONG_BITS 64
78 #else
79 # error Unknown pointer size
80 #endif
82 #ifndef CONFIG_IOVEC
83 #define CONFIG_IOVEC
84 struct iovec {
85 void *iov_base;
86 size_t iov_len;
89 * Use the same value as Linux for now.
91 #define IOV_MAX 1024
92 #else
93 #include <sys/uio.h>
94 #endif
96 typedef int (*fprintf_function)(FILE *f, const char *fmt, ...)
97 GCC_FMT_ATTR(2, 3);
99 #ifdef _WIN32
100 #define fsync _commit
101 #if !defined(lseek)
102 # define lseek _lseeki64
103 #endif
104 int qemu_ftruncate64(int, int64_t);
105 #if !defined(ftruncate)
106 # define ftruncate qemu_ftruncate64
107 #endif
109 static inline char *realpath(const char *path, char *resolved_path)
111 _fullpath(resolved_path, path, _MAX_PATH);
112 return resolved_path;
114 #endif
116 /* icount */
117 void configure_icount(const char *option);
118 extern int use_icount;
120 /* FIXME: Remove NEED_CPU_H. */
121 #ifndef NEED_CPU_H
123 #include "osdep.h"
124 #include "bswap.h"
126 #else
128 #include "cpu.h"
130 #endif /* !defined(NEED_CPU_H) */
132 /* main function, renamed */
133 #if defined(CONFIG_COCOA)
134 int qemu_main(int argc, char **argv, char **envp);
135 #endif
137 void qemu_get_timedate(struct tm *tm, int offset);
138 int qemu_timedate_diff(struct tm *tm);
141 * is_help_option:
142 * @s: string to test
144 * Check whether @s is one of the standard strings which indicate
145 * that the user is asking for a list of the valid values for a
146 * command option like -cpu or -M. The current accepted strings
147 * are 'help' and '?'. '?' is deprecated (it is a shell wildcard
148 * which makes it annoying to use in a reliable way) but provided
149 * for backwards compatibility.
151 * Returns: true if @s is a request for a list.
153 static inline bool is_help_option(const char *s)
155 return !strcmp(s, "?") || !strcmp(s, "help");
158 /* cutils.c */
159 void pstrcpy(char *buf, int buf_size, const char *str);
160 void strpadcpy(char *buf, int buf_size, const char *str, char pad);
161 char *pstrcat(char *buf, int buf_size, const char *s);
162 int strstart(const char *str, const char *val, const char **ptr);
163 int stristart(const char *str, const char *val, const char **ptr);
164 int qemu_strnlen(const char *s, int max_len);
165 time_t mktimegm(struct tm *tm);
166 int qemu_fls(int i);
167 int qemu_fdatasync(int fd);
168 int fcntl_setfl(int fd, int flag);
169 int qemu_parse_fd(const char *param);
170 int qemu_parse_fdset(const char *param);
173 * strtosz() suffixes used to specify the default treatment of an
174 * argument passed to strtosz() without an explicit suffix.
175 * These should be defined using upper case characters in the range
176 * A-Z, as strtosz() will use qemu_toupper() on the given argument
177 * prior to comparison.
179 #define STRTOSZ_DEFSUFFIX_TB 'T'
180 #define STRTOSZ_DEFSUFFIX_GB 'G'
181 #define STRTOSZ_DEFSUFFIX_MB 'M'
182 #define STRTOSZ_DEFSUFFIX_KB 'K'
183 #define STRTOSZ_DEFSUFFIX_B 'B'
184 int64_t strtosz(const char *nptr, char **end);
185 int64_t strtosz_suffix(const char *nptr, char **end, const char default_suffix);
186 int64_t strtosz_suffix_unit(const char *nptr, char **end,
187 const char default_suffix, int64_t unit);
189 /* path.c */
190 void init_paths(const char *prefix);
191 const char *path(const char *pathname);
193 #define qemu_isalnum(c) isalnum((unsigned char)(c))
194 #define qemu_isalpha(c) isalpha((unsigned char)(c))
195 #define qemu_iscntrl(c) iscntrl((unsigned char)(c))
196 #define qemu_isdigit(c) isdigit((unsigned char)(c))
197 #define qemu_isgraph(c) isgraph((unsigned char)(c))
198 #define qemu_islower(c) islower((unsigned char)(c))
199 #define qemu_isprint(c) isprint((unsigned char)(c))
200 #define qemu_ispunct(c) ispunct((unsigned char)(c))
201 #define qemu_isspace(c) isspace((unsigned char)(c))
202 #define qemu_isupper(c) isupper((unsigned char)(c))
203 #define qemu_isxdigit(c) isxdigit((unsigned char)(c))
204 #define qemu_tolower(c) tolower((unsigned char)(c))
205 #define qemu_toupper(c) toupper((unsigned char)(c))
206 #define qemu_isascii(c) isascii((unsigned char)(c))
207 #define qemu_toascii(c) toascii((unsigned char)(c))
209 void *qemu_oom_check(void *ptr);
211 int qemu_open(const char *name, int flags, ...);
212 int qemu_close(int fd);
213 ssize_t qemu_write_full(int fd, const void *buf, size_t count)
214 QEMU_WARN_UNUSED_RESULT;
215 ssize_t qemu_send_full(int fd, const void *buf, size_t count, int flags)
216 QEMU_WARN_UNUSED_RESULT;
217 ssize_t qemu_recv_full(int fd, void *buf, size_t count, int flags)
218 QEMU_WARN_UNUSED_RESULT;
220 #ifndef _WIN32
221 int qemu_eventfd(int pipefd[2]);
222 int qemu_pipe(int pipefd[2]);
223 #endif
225 #ifdef _WIN32
226 /* MinGW needs a type cast for the 'buf' argument. */
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_recv(sockfd, buf, len, flags) recv(sockfd, buf, len, flags)
232 #define qemu_sendto(sockfd, buf, len, flags, destaddr, addrlen) \
233 sendto(sockfd, buf, len, flags, destaddr, addrlen)
234 #endif
236 /* Error handling. */
238 void QEMU_NORETURN hw_error(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
240 struct ParallelIOArg {
241 void *buffer;
242 int count;
245 typedef int (*DMA_transfer_handler) (void *opaque, int nchan, int pos, int size);
247 /* A load of opaque types so that device init declarations don't have to
248 pull in all the real definitions. */
249 typedef struct NICInfo NICInfo;
250 typedef struct HCIInfo HCIInfo;
251 typedef struct AudioState AudioState;
252 typedef struct BlockDriverState BlockDriverState;
253 typedef struct DriveInfo DriveInfo;
254 typedef struct DisplayState DisplayState;
255 typedef struct DisplayChangeListener DisplayChangeListener;
256 typedef struct DisplaySurface DisplaySurface;
257 typedef struct DisplayAllocator DisplayAllocator;
258 typedef struct PixelFormat PixelFormat;
259 typedef struct TextConsole TextConsole;
260 typedef TextConsole QEMUConsole;
261 typedef struct CharDriverState CharDriverState;
262 typedef struct MACAddr MACAddr;
263 typedef struct NetClientState NetClientState;
264 typedef struct i2c_bus i2c_bus;
265 typedef struct ISABus ISABus;
266 typedef struct ISADevice ISADevice;
267 typedef struct SMBusDevice SMBusDevice;
268 typedef struct PCIHostState PCIHostState;
269 typedef struct PCIExpressHost PCIExpressHost;
270 typedef struct PCIBus PCIBus;
271 typedef struct PCIDevice PCIDevice;
272 typedef struct PCIExpressDevice PCIExpressDevice;
273 typedef struct PCIBridge PCIBridge;
274 typedef struct PCIEAERMsg PCIEAERMsg;
275 typedef struct PCIEAERLog PCIEAERLog;
276 typedef struct PCIEAERErr PCIEAERErr;
277 typedef struct PCIEPort PCIEPort;
278 typedef struct PCIESlot PCIESlot;
279 typedef struct MSIMessage MSIMessage;
280 typedef struct SerialState SerialState;
281 typedef struct IRQState *qemu_irq;
282 typedef struct PCMCIACardState PCMCIACardState;
283 typedef struct MouseTransformInfo MouseTransformInfo;
284 typedef struct uWireSlave uWireSlave;
285 typedef struct I2SCodec I2SCodec;
286 typedef struct SSIBus SSIBus;
287 typedef struct EventNotifier EventNotifier;
288 typedef struct VirtIODevice VirtIODevice;
289 typedef struct QEMUSGList QEMUSGList;
290 typedef struct SHPCDevice SHPCDevice;
292 typedef uint64_t pcibus_t;
294 typedef enum LostTickPolicy {
295 LOST_TICK_DISCARD,
296 LOST_TICK_DELAY,
297 LOST_TICK_MERGE,
298 LOST_TICK_SLEW,
299 LOST_TICK_MAX
300 } LostTickPolicy;
302 typedef struct PCIHostDeviceAddress {
303 unsigned int domain;
304 unsigned int bus;
305 unsigned int slot;
306 unsigned int function;
307 } PCIHostDeviceAddress;
309 void tcg_exec_init(unsigned long tb_size);
310 bool tcg_enabled(void);
312 void cpu_exec_init_all(void);
314 /* CPU save/load. */
315 void cpu_save(QEMUFile *f, void *opaque);
316 int cpu_load(QEMUFile *f, void *opaque, int version_id);
318 /* Unblock cpu */
319 void qemu_cpu_kick(void *env);
320 void qemu_cpu_kick_self(void);
321 int qemu_cpu_is_self(void *env);
323 /* work queue */
324 struct qemu_work_item {
325 struct qemu_work_item *next;
326 void (*func)(void *data);
327 void *data;
328 int done;
331 #ifdef CONFIG_USER_ONLY
332 #define qemu_init_vcpu(env) do { } while (0)
333 #else
334 void qemu_init_vcpu(void *env);
335 #endif
339 * Sends a (part of) iovec down a socket, yielding when the socket is full, or
340 * Receives data into a (part of) iovec from a socket,
341 * yielding when there is no data in the socket.
342 * The same interface as qemu_sendv_recvv(), with added yielding.
343 * XXX should mark these as coroutine_fn
345 ssize_t qemu_co_sendv_recvv(int sockfd, struct iovec *iov, unsigned iov_cnt,
346 size_t offset, size_t bytes, bool do_send);
347 #define qemu_co_recvv(sockfd, iov, iov_cnt, offset, bytes) \
348 qemu_co_sendv_recvv(sockfd, iov, iov_cnt, offset, bytes, false)
349 #define qemu_co_sendv(sockfd, iov, iov_cnt, offset, bytes) \
350 qemu_co_sendv_recvv(sockfd, iov, iov_cnt, offset, bytes, true)
353 * The same as above, but with just a single buffer
355 ssize_t qemu_co_send_recv(int sockfd, void *buf, size_t bytes, bool do_send);
356 #define qemu_co_recv(sockfd, buf, bytes) \
357 qemu_co_send_recv(sockfd, buf, bytes, false)
358 #define qemu_co_send(sockfd, buf, bytes) \
359 qemu_co_send_recv(sockfd, buf, bytes, true)
361 typedef struct QEMUIOVector {
362 struct iovec *iov;
363 int niov;
364 int nalloc;
365 size_t size;
366 } QEMUIOVector;
368 void qemu_iovec_init(QEMUIOVector *qiov, int alloc_hint);
369 void qemu_iovec_init_external(QEMUIOVector *qiov, struct iovec *iov, int niov);
370 void qemu_iovec_add(QEMUIOVector *qiov, void *base, size_t len);
371 void qemu_iovec_concat(QEMUIOVector *dst,
372 QEMUIOVector *src, size_t soffset, size_t sbytes);
373 void qemu_iovec_destroy(QEMUIOVector *qiov);
374 void qemu_iovec_reset(QEMUIOVector *qiov);
375 size_t qemu_iovec_to_buf(QEMUIOVector *qiov, size_t offset,
376 void *buf, size_t bytes);
377 size_t qemu_iovec_from_buf(QEMUIOVector *qiov, size_t offset,
378 const void *buf, size_t bytes);
379 size_t qemu_iovec_memset(QEMUIOVector *qiov, size_t offset,
380 int fillc, size_t bytes);
382 bool buffer_is_zero(const void *buf, size_t len);
384 void qemu_progress_init(int enabled, float min_skip);
385 void qemu_progress_end(void);
386 void qemu_progress_print(float delta, int max);
387 const char *qemu_get_vm_name(void);
389 #define QEMU_FILE_TYPE_BIOS 0
390 #define QEMU_FILE_TYPE_KEYMAP 1
391 char *qemu_find_file(int type, const char *name);
393 /* OS specific functions */
394 void os_setup_early_signal_handling(void);
395 char *os_find_datadir(const char *argv0);
396 void os_parse_cmd_args(int index, const char *optarg);
397 void os_pidfile_error(void);
399 /* Convert a byte between binary and BCD. */
400 static inline uint8_t to_bcd(uint8_t val)
402 return ((val / 10) << 4) | (val % 10);
405 static inline uint8_t from_bcd(uint8_t val)
407 return ((val >> 4) * 10) + (val & 0x0f);
410 /* compute with 96 bit intermediate result: (a*b)/c */
411 static inline uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
413 union {
414 uint64_t ll;
415 struct {
416 #ifdef HOST_WORDS_BIGENDIAN
417 uint32_t high, low;
418 #else
419 uint32_t low, high;
420 #endif
421 } l;
422 } u, res;
423 uint64_t rl, rh;
425 u.ll = a;
426 rl = (uint64_t)u.l.low * (uint64_t)b;
427 rh = (uint64_t)u.l.high * (uint64_t)b;
428 rh += (rl >> 32);
429 res.l.high = rh / c;
430 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
431 return res.ll;
434 /* Round number down to multiple */
435 #define QEMU_ALIGN_DOWN(n, m) ((n) / (m) * (m))
437 /* Round number up to multiple */
438 #define QEMU_ALIGN_UP(n, m) QEMU_ALIGN_DOWN((n) + (m) - 1, (m))
440 static inline bool is_power_of_2(uint64_t value)
442 if (!value) {
443 return 0;
446 return !(value & (value - 1));
449 /* round down to the nearest power of 2*/
450 int64_t pow2floor(int64_t value);
452 #include "module.h"
455 * Implementation of ULEB128 (http://en.wikipedia.org/wiki/LEB128)
456 * Input is limited to 14-bit numbers
459 int uleb128_encode_small(uint8_t *out, uint32_t n);
460 int uleb128_decode_small(const uint8_t *in, uint32_t *n);
462 #endif