]> git.proxmox.com Git - qemu.git/blame - qemu-common.h
QMP: Don't use do_info()
[qemu.git] / qemu-common.h
CommitLineData
faf07963
PB
1/* Common header file that is included by all of qemu. */
2#ifndef QEMU_COMMON_H
3#define QEMU_COMMON_H
4
beb6f0de
KW
5#include "config-host.h"
6
a5e50b26 7#define QEMU_NORETURN __attribute__ ((__noreturn__))
747bbdf7
BS
8#ifdef CONFIG_GCC_ATTRIBUTE_WARN_UNUSED_RESULT
9#define QEMU_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
10#else
11#define QEMU_WARN_UNUSED_RESULT
12#endif
7d99a001 13
24ebf5f3
PB
14#define QEMU_BUILD_BUG_ON(x) typedef char __build_bug_on__##__LINE__[(x)?-1:1];
15
29e922b6
BS
16typedef struct QEMUTimer QEMUTimer;
17typedef struct QEMUFile QEMUFile;
18typedef struct QEMUBH QEMUBH;
92a16d7a 19typedef struct DeviceState DeviceState;
29e922b6 20
a5e50b26 21/* Hack around the mess dyngen-exec.h causes: We need QEMU_NORETURN in files that
7d99a001
BS
22 cannot include the following headers without conflicts. This condition has
23 to be removed once dyngen is gone. */
24#ifndef __DYNGEN_EXEC_H__
25
faf07963
PB
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>
11165820 30#include <stdbool.h>
faf07963 31#include <string.h>
c8906845 32#include <strings.h>
faf07963
PB
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>
55616505 41#include <assert.h>
faf07963
PB
42
43#ifndef O_LARGEFILE
44#define O_LARGEFILE 0
45#endif
46#ifndef O_BINARY
47#define O_BINARY 0
48#endif
0e74e66b
JQ
49#ifndef MAP_ANONYMOUS
50#define MAP_ANONYMOUS MAP_ANON
51#endif
faf07963
PB
52#ifndef ENOMEDIUM
53#define ENOMEDIUM ENODEV
54#endif
4c955388 55#if !defined(ENOTSUP)
2880bc32
JQ
56#define ENOTSUP 4096
57#endif
faf07963 58
6114fdb0
JQ
59#ifndef CONFIG_IOVEC
60#define CONFIG_IOVEC
bf9298b9
AL
61struct iovec {
62 void *iov_base;
63 size_t iov_len;
64};
e2a305fb
CH
65/*
66 * Use the same value as Linux for now.
67 */
68#define IOV_MAX 1024
331dadde
BS
69#else
70#include <sys/uio.h>
bf9298b9
AL
71#endif
72
9c9e7d51
SW
73#if defined __GNUC__
74# if (__GNUC__ < 4) || \
75 defined(__GNUC_MINOR__) && (__GNUC__ == 4) && (__GNUC_MINOR__ < 4)
76 /* gcc versions before 4.4.x don't support gnu_printf, so use printf. */
77# define GCC_ATTR __attribute__((__unused__, format(printf, 1, 2)))
78# define GCC_FMT_ATTR(n, m) __attribute__((format(printf, n, m)))
79# else
80 /* Use gnu_printf when supported (qemu uses standard format strings). */
81# define GCC_ATTR __attribute__((__unused__, format(gnu_printf, 1, 2)))
82# define GCC_FMT_ATTR(n, m) __attribute__((format(gnu_printf, n, m)))
83# endif
84#else
85#define GCC_ATTR /**/
86#define GCC_FMT_ATTR(n, m)
87#endif
88
faf07963 89#ifdef _WIN32
faf07963
PB
90#define fsync _commit
91#define lseek _lseeki64
faf07963
PB
92extern int qemu_ftruncate64(int, int64_t);
93#define ftruncate qemu_ftruncate64
94
faf07963
PB
95static inline char *realpath(const char *path, char *resolved_path)
96{
97 _fullpath(resolved_path, path, _MAX_PATH);
98 return resolved_path;
99}
100
101#define PRId64 "I64d"
102#define PRIx64 "I64x"
103#define PRIu64 "I64u"
104#define PRIo64 "I64o"
105#endif
106
107/* FIXME: Remove NEED_CPU_H. */
108#ifndef NEED_CPU_H
109
faf07963
PB
110#include <setjmp.h>
111#include "osdep.h"
112#include "bswap.h"
113
114#else
115
116#include "cpu.h"
117
118#endif /* !defined(NEED_CPU_H) */
119
120/* bottom halves */
faf07963
PB
121typedef void QEMUBHFunc(void *opaque);
122
9a1e9481
KW
123void async_context_push(void);
124void async_context_pop(void);
125int get_async_context_id(void);
126
faf07963
PB
127QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque);
128void qemu_bh_schedule(QEMUBH *bh);
80d3580b
AL
129/* Bottom halfs that are scheduled from a bottom half handler are instantly
130 * invoked. This can create an infinite loop if a bottom half handler
131 * schedules itself. qemu_bh_schedule_idle() avoids this infinite loop by
132 * ensuring that the bottom half isn't executed until the next main loop
133 * iteration.
134 */
1b435b10 135void qemu_bh_schedule_idle(QEMUBH *bh);
faf07963
PB
136void qemu_bh_cancel(QEMUBH *bh);
137void qemu_bh_delete(QEMUBH *bh);
138int qemu_bh_poll(void);
4f999d05 139void qemu_bh_update_timeout(int *timeout);
faf07963 140
87ecb68b
PB
141uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c);
142
f6503059
AZ
143void qemu_get_timedate(struct tm *tm, int offset);
144int qemu_timedate_diff(struct tm *tm);
145
faf07963
PB
146/* cutils.c */
147void pstrcpy(char *buf, int buf_size, const char *str);
148char *pstrcat(char *buf, int buf_size, const char *s);
149int strstart(const char *str, const char *val, const char **ptr);
150int stristart(const char *str, const char *val, const char **ptr);
d43277c5 151int qemu_strnlen(const char *s, int max_len);
faf07963 152time_t mktimegm(struct tm *tm);
ad46db9a 153int qemu_fls(int i);
6f1953c4 154int qemu_fdatasync(int fd);
db1a4972 155int fcntl_setfl(int fd, int flag);
faf07963 156
37022086
BS
157/* path.c */
158void init_paths(const char *prefix);
159const char *path(const char *pathname);
160
cd390083
BS
161#define qemu_isalnum(c) isalnum((unsigned char)(c))
162#define qemu_isalpha(c) isalpha((unsigned char)(c))
163#define qemu_iscntrl(c) iscntrl((unsigned char)(c))
164#define qemu_isdigit(c) isdigit((unsigned char)(c))
165#define qemu_isgraph(c) isgraph((unsigned char)(c))
166#define qemu_islower(c) islower((unsigned char)(c))
167#define qemu_isprint(c) isprint((unsigned char)(c))
168#define qemu_ispunct(c) ispunct((unsigned char)(c))
169#define qemu_isspace(c) isspace((unsigned char)(c))
170#define qemu_isupper(c) isupper((unsigned char)(c))
171#define qemu_isxdigit(c) isxdigit((unsigned char)(c))
172#define qemu_tolower(c) tolower((unsigned char)(c))
173#define qemu_toupper(c) toupper((unsigned char)(c))
174#define qemu_isascii(c) isascii((unsigned char)(c))
175#define qemu_toascii(c) toascii((unsigned char)(c))
176
ca10f867 177void *qemu_malloc(size_t size);
2137b4cc 178void *qemu_realloc(void *ptr, size_t size);
ca10f867
AJ
179void *qemu_mallocz(size_t size);
180void qemu_free(void *ptr);
181char *qemu_strdup(const char *str);
ac4b0d0c 182char *qemu_strndup(const char *str, size_t size);
ca10f867 183
d549db5a
GC
184void qemu_mutex_lock_iothread(void);
185void qemu_mutex_unlock_iothread(void);
186
40ff6d7e 187int qemu_open(const char *name, int flags, ...);
7c7c0629
JQ
188ssize_t qemu_write_full(int fd, const void *buf, size_t count)
189 QEMU_WARN_UNUSED_RESULT;
40ff6d7e
KW
190void qemu_set_cloexec(int fd);
191
192#ifndef _WIN32
f3dfda61 193int qemu_eventfd(int pipefd[2]);
40ff6d7e
KW
194int qemu_pipe(int pipefd[2]);
195#endif
196
87ecb68b
PB
197/* Error handling. */
198
a5e50b26 199void QEMU_NORETURN hw_error(const char *fmt, ...)
7d99a001 200 __attribute__ ((__format__ (__printf__, 1, 2)));
87ecb68b
PB
201
202/* IO callbacks. */
203typedef void IOReadHandler(void *opaque, const uint8_t *buf, int size);
7b27a769 204typedef int IOCanReadHandler(void *opaque);
87ecb68b
PB
205typedef void IOHandler(void *opaque);
206
207struct ParallelIOArg {
208 void *buffer;
209 int count;
210};
211
212typedef int (*DMA_transfer_handler) (void *opaque, int nchan, int pos, int size);
213
214/* A load of opaque types so that device init declarations don't have to
215 pull in all the real definitions. */
216typedef struct NICInfo NICInfo;
1ae26a18 217typedef struct HCIInfo HCIInfo;
87ecb68b
PB
218typedef struct AudioState AudioState;
219typedef struct BlockDriverState BlockDriverState;
2446333c 220typedef struct DriveInfo DriveInfo;
87ecb68b 221typedef struct DisplayState DisplayState;
7d957bd8
AL
222typedef struct DisplayChangeListener DisplayChangeListener;
223typedef struct DisplaySurface DisplaySurface;
7b5d76da 224typedef struct DisplayAllocator DisplayAllocator;
7d957bd8 225typedef struct PixelFormat PixelFormat;
87ecb68b 226typedef struct TextConsole TextConsole;
c60e08d9 227typedef TextConsole QEMUConsole;
87ecb68b 228typedef struct CharDriverState CharDriverState;
76d32cba 229typedef struct MACAddr MACAddr;
87ecb68b 230typedef struct VLANState VLANState;
f7105843 231typedef struct VLANClientState VLANClientState;
87ecb68b
PB
232typedef struct i2c_bus i2c_bus;
233typedef struct i2c_slave i2c_slave;
234typedef struct SMBusDevice SMBusDevice;
fb47a2e9
IY
235typedef struct PCIHostState PCIHostState;
236typedef struct PCIExpressHost PCIExpressHost;
87ecb68b
PB
237typedef struct PCIBus PCIBus;
238typedef struct PCIDevice PCIDevice;
239typedef struct SerialState SerialState;
240typedef struct IRQState *qemu_irq;
bc24a225
PB
241typedef struct PCMCIACardState PCMCIACardState;
242typedef struct MouseTransformInfo MouseTransformInfo;
243typedef struct uWireSlave uWireSlave;
244typedef struct I2SCodec I2SCodec;
90d37239 245typedef struct SSIBus SSIBus;
2292b339 246typedef struct EventNotifier EventNotifier;
2be24aaa 247typedef struct VirtIODevice VirtIODevice;
87ecb68b 248
186993ee
MT
249typedef uint64_t pcibus_t;
250
2446333c
BS
251typedef enum {
252 IF_NONE,
253 IF_IDE, IF_SCSI, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD, IF_VIRTIO, IF_XEN,
254 IF_COUNT
255} BlockInterfaceType;
256
d2053c3c
BS
257void cpu_exec_init_all(unsigned long tb_size);
258
b3c7724c
PB
259/* CPU save/load. */
260void cpu_save(QEMUFile *f, void *opaque);
261int cpu_load(QEMUFile *f, void *opaque, int version_id);
262
9e472e10
AL
263/* Force QEMU to stop what it's doing and service IO */
264void qemu_service_io(void);
265
d9f75a4e
AL
266/* Force QEMU to process pending events */
267void qemu_notify_event(void);
268
8edac960
AL
269/* Unblock cpu */
270void qemu_cpu_kick(void *env);
271int qemu_cpu_self(void *env);
272
e82bcec2
MT
273/* work queue */
274struct qemu_work_item {
275 struct qemu_work_item *next;
276 void (*func)(void *data);
277 void *data;
278 int done;
279};
280
0bf46a40
AL
281#ifdef CONFIG_USER_ONLY
282#define qemu_init_vcpu(env) do { } while (0)
283#else
284void qemu_init_vcpu(void *env);
285#endif
286
44e3ee8a
AL
287typedef struct QEMUIOVector {
288 struct iovec *iov;
289 int niov;
290 int nalloc;
249aa745 291 size_t size;
44e3ee8a
AL
292} QEMUIOVector;
293
294void qemu_iovec_init(QEMUIOVector *qiov, int alloc_hint);
522584a5 295void qemu_iovec_init_external(QEMUIOVector *qiov, struct iovec *iov, int niov);
44e3ee8a 296void qemu_iovec_add(QEMUIOVector *qiov, void *base, size_t len);
b8a83a4f
KW
297void qemu_iovec_copy(QEMUIOVector *dst, QEMUIOVector *src, uint64_t skip,
298 size_t size);
40b4f539 299void qemu_iovec_concat(QEMUIOVector *dst, QEMUIOVector *src, size_t size);
44e3ee8a 300void qemu_iovec_destroy(QEMUIOVector *qiov);
be959463 301void qemu_iovec_reset(QEMUIOVector *qiov);
44e3ee8a 302void qemu_iovec_to_buffer(QEMUIOVector *qiov, void *buf);
249aa745 303void qemu_iovec_from_buffer(QEMUIOVector *qiov, const void *buf, size_t count);
b8a83a4f 304void qemu_iovec_memset(QEMUIOVector *qiov, int c, size_t count);
44e3ee8a 305
376253ec
AL
306struct Monitor;
307typedef struct Monitor Monitor;
308
abd0c6bd
PB
309/* Convert a byte between binary and BCD. */
310static inline uint8_t to_bcd(uint8_t val)
311{
312 return ((val / 10) << 4) | (val % 10);
313}
314
315static inline uint8_t from_bcd(uint8_t val)
316{
317 return ((val >> 4) * 10) + (val & 0x0f);
318}
319
0bfe3ca5
AL
320#include "module.h"
321
7d99a001
BS
322#endif /* dyngen-exec.h hack */
323
faf07963 324#endif