blob: b779cfe69d059a3b90159efc77144c0092cf2056 [file] [log] [blame]
pbrookfaf07962007-11-11 02:51:17 +00001/* Common header file that is included by all of qemu. */
2#ifndef QEMU_COMMON_H
3#define QEMU_COMMON_H
4
malca5e50b22009-02-01 22:19:27 +00005#define QEMU_NORETURN __attribute__ ((__noreturn__))
Blue Swirl747bbdf2009-10-18 16:26:06 +00006#ifdef CONFIG_GCC_ATTRIBUTE_WARN_UNUSED_RESULT
7#define QEMU_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
8#else
9#define QEMU_WARN_UNUSED_RESULT
10#endif
blueswir17d99a002009-01-14 19:00:36 +000011
malca5e50b22009-02-01 22:19:27 +000012/* Hack around the mess dyngen-exec.h causes: We need QEMU_NORETURN in files that
blueswir17d99a002009-01-14 19:00:36 +000013 cannot include the following headers without conflicts. This condition has
14 to be removed once dyngen is gone. */
15#ifndef __DYNGEN_EXEC_H__
16
pbrookfaf07962007-11-11 02:51:17 +000017/* we put basic includes here to avoid repeating them in device drivers */
18#include <stdlib.h>
19#include <stdio.h>
20#include <stdarg.h>
21#include <string.h>
balrogc8906842008-11-12 17:18:41 +000022#include <strings.h>
pbrookfaf07962007-11-11 02:51:17 +000023#include <inttypes.h>
24#include <limits.h>
25#include <time.h>
26#include <ctype.h>
27#include <errno.h>
28#include <unistd.h>
29#include <fcntl.h>
30#include <sys/stat.h>
Paul Brook55616502009-05-13 20:51:49 +010031#include <assert.h>
aliguoribf9298b2008-12-05 20:05:26 +000032#include "config-host.h"
pbrookfaf07962007-11-11 02:51:17 +000033
34#ifndef O_LARGEFILE
35#define O_LARGEFILE 0
36#endif
37#ifndef O_BINARY
38#define O_BINARY 0
39#endif
Juan Quintela0e74e662009-07-27 16:12:57 +020040#ifndef MAP_ANONYMOUS
41#define MAP_ANONYMOUS MAP_ANON
42#endif
pbrookfaf07962007-11-11 02:51:17 +000043#ifndef ENOMEDIUM
44#define ENOMEDIUM ENODEV
45#endif
Anthony Liguori4c955382009-07-28 15:48:31 -050046#if !defined(ENOTSUP)
Juan Quintela2880bc32009-07-27 16:13:22 +020047#define ENOTSUP 4096
48#endif
pbrookfaf07962007-11-11 02:51:17 +000049
Juan Quintela6114fdb2009-07-27 16:12:59 +020050#ifndef CONFIG_IOVEC
51#define CONFIG_IOVEC
aliguoribf9298b2008-12-05 20:05:26 +000052struct iovec {
53 void *iov_base;
54 size_t iov_len;
55};
blueswir1331dadd2008-12-06 19:44:56 +000056#else
57#include <sys/uio.h>
aliguoribf9298b2008-12-05 20:05:26 +000058#endif
59
pbrookfaf07962007-11-11 02:51:17 +000060#ifdef _WIN32
pbrookfaf07962007-11-11 02:51:17 +000061#define fsync _commit
62#define lseek _lseeki64
pbrookfaf07962007-11-11 02:51:17 +000063extern int qemu_ftruncate64(int, int64_t);
64#define ftruncate qemu_ftruncate64
65
pbrookfaf07962007-11-11 02:51:17 +000066static inline char *realpath(const char *path, char *resolved_path)
67{
68 _fullpath(resolved_path, path, _MAX_PATH);
69 return resolved_path;
70}
71
72#define PRId64 "I64d"
73#define PRIx64 "I64x"
74#define PRIu64 "I64u"
75#define PRIo64 "I64o"
76#endif
77
78/* FIXME: Remove NEED_CPU_H. */
79#ifndef NEED_CPU_H
80
pbrookfaf07962007-11-11 02:51:17 +000081#include <setjmp.h>
82#include "osdep.h"
83#include "bswap.h"
84
85#else
86
87#include "cpu.h"
88
89#endif /* !defined(NEED_CPU_H) */
90
91/* bottom halves */
92typedef struct QEMUBH QEMUBH;
93
94typedef void QEMUBHFunc(void *opaque);
95
Kevin Wolf9a1e9482009-10-22 17:54:38 +020096void async_context_push(void);
97void async_context_pop(void);
98int get_async_context_id(void);
99
pbrookfaf07962007-11-11 02:51:17 +0000100QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque);
101void qemu_bh_schedule(QEMUBH *bh);
aliguori80d35802008-10-31 17:42:00 +0000102/* Bottom halfs that are scheduled from a bottom half handler are instantly
103 * invoked. This can create an infinite loop if a bottom half handler
104 * schedules itself. qemu_bh_schedule_idle() avoids this infinite loop by
105 * ensuring that the bottom half isn't executed until the next main loop
106 * iteration.
107 */
aliguori1b435b12008-10-31 17:24:21 +0000108void qemu_bh_schedule_idle(QEMUBH *bh);
pbrookfaf07962007-11-11 02:51:17 +0000109void qemu_bh_cancel(QEMUBH *bh);
110void qemu_bh_delete(QEMUBH *bh);
111int qemu_bh_poll(void);
Kevin Wolf4f999d02009-10-22 17:54:37 +0200112void qemu_bh_update_timeout(int *timeout);
pbrookfaf07962007-11-11 02:51:17 +0000113
pbrook87ecb682007-11-17 17:14:51 +0000114uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c);
115
balrogf6503052008-02-17 11:42:19 +0000116void qemu_get_timedate(struct tm *tm, int offset);
117int qemu_timedate_diff(struct tm *tm);
118
pbrookfaf07962007-11-11 02:51:17 +0000119/* cutils.c */
120void pstrcpy(char *buf, int buf_size, const char *str);
121char *pstrcat(char *buf, int buf_size, const char *s);
122int strstart(const char *str, const char *val, const char **ptr);
123int stristart(const char *str, const char *val, const char **ptr);
Blue Swirld43277c2009-07-01 18:24:44 +0000124int qemu_strnlen(const char *s, int max_len);
pbrookfaf07962007-11-11 02:51:17 +0000125time_t mktimegm(struct tm *tm);
blueswir1ad46db92008-12-11 19:37:54 +0000126int qemu_fls(int i);
Christoph Hellwig6f1953c2009-09-04 19:01:32 +0200127int qemu_fdatasync(int fd);
pbrookfaf07962007-11-11 02:51:17 +0000128
Blue Swirl37022082009-08-15 07:51:59 +0000129/* path.c */
130void init_paths(const char *prefix);
131const char *path(const char *pathname);
132
blueswir1cd390082008-11-16 13:53:32 +0000133#define qemu_isalnum(c) isalnum((unsigned char)(c))
134#define qemu_isalpha(c) isalpha((unsigned char)(c))
135#define qemu_iscntrl(c) iscntrl((unsigned char)(c))
136#define qemu_isdigit(c) isdigit((unsigned char)(c))
137#define qemu_isgraph(c) isgraph((unsigned char)(c))
138#define qemu_islower(c) islower((unsigned char)(c))
139#define qemu_isprint(c) isprint((unsigned char)(c))
140#define qemu_ispunct(c) ispunct((unsigned char)(c))
141#define qemu_isspace(c) isspace((unsigned char)(c))
142#define qemu_isupper(c) isupper((unsigned char)(c))
143#define qemu_isxdigit(c) isxdigit((unsigned char)(c))
144#define qemu_tolower(c) tolower((unsigned char)(c))
145#define qemu_toupper(c) toupper((unsigned char)(c))
146#define qemu_isascii(c) isascii((unsigned char)(c))
147#define qemu_toascii(c) toascii((unsigned char)(c))
148
aurel32ca10f862008-04-11 21:35:42 +0000149void *qemu_malloc(size_t size);
ths2137b4c2008-08-06 08:37:17 +0000150void *qemu_realloc(void *ptr, size_t size);
aurel32ca10f862008-04-11 21:35:42 +0000151void *qemu_mallocz(size_t size);
152void qemu_free(void *ptr);
153char *qemu_strdup(const char *str);
balrogac4b0d02008-11-09 00:28:40 +0000154char *qemu_strndup(const char *str, size_t size);
aurel32ca10f862008-04-11 21:35:42 +0000155
156void *get_mmap_addr(unsigned long size);
157
158
Glauber Costad549db52009-10-07 16:38:03 -0300159void qemu_mutex_lock_iothread(void);
160void qemu_mutex_unlock_iothread(void);
161
pbrook87ecb682007-11-17 17:14:51 +0000162/* Error handling. */
163
malca5e50b22009-02-01 22:19:27 +0000164void QEMU_NORETURN hw_error(const char *fmt, ...)
blueswir17d99a002009-01-14 19:00:36 +0000165 __attribute__ ((__format__ (__printf__, 1, 2)));
pbrook87ecb682007-11-17 17:14:51 +0000166
167/* IO callbacks. */
168typedef void IOReadHandler(void *opaque, const uint8_t *buf, int size);
169typedef int IOCanRWHandler(void *opaque);
170typedef void IOHandler(void *opaque);
171
172struct ParallelIOArg {
173 void *buffer;
174 int count;
175};
176
177typedef int (*DMA_transfer_handler) (void *opaque, int nchan, int pos, int size);
178
179/* A load of opaque types so that device init declarations don't have to
180 pull in all the real definitions. */
181typedef struct NICInfo NICInfo;
balrog1ae26a12008-09-28 23:19:47 +0000182typedef struct HCIInfo HCIInfo;
pbrook87ecb682007-11-17 17:14:51 +0000183typedef struct AudioState AudioState;
184typedef struct BlockDriverState BlockDriverState;
185typedef struct DisplayState DisplayState;
aliguori7d957bd2009-01-15 22:14:11 +0000186typedef struct DisplayChangeListener DisplayChangeListener;
187typedef struct DisplaySurface DisplaySurface;
aliguori7b5d76d2009-03-13 15:02:13 +0000188typedef struct DisplayAllocator DisplayAllocator;
aliguori7d957bd2009-01-15 22:14:11 +0000189typedef struct PixelFormat PixelFormat;
pbrook87ecb682007-11-17 17:14:51 +0000190typedef struct TextConsole TextConsole;
pbrookc60e08d2008-07-01 16:24:38 +0000191typedef TextConsole QEMUConsole;
pbrook87ecb682007-11-17 17:14:51 +0000192typedef struct CharDriverState CharDriverState;
Gerd Hoffmann76d32cb2009-10-21 15:25:22 +0200193typedef struct MACAddr MACAddr;
pbrook87ecb682007-11-17 17:14:51 +0000194typedef struct VLANState VLANState;
Mark McLoughlinf7105842009-10-08 19:58:31 +0100195typedef struct VLANClientState VLANClientState;
pbrook87ecb682007-11-17 17:14:51 +0000196typedef struct QEMUFile QEMUFile;
197typedef struct i2c_bus i2c_bus;
198typedef struct i2c_slave i2c_slave;
199typedef struct SMBusDevice SMBusDevice;
200typedef struct QEMUTimer QEMUTimer;
201typedef struct PCIBus PCIBus;
202typedef struct PCIDevice PCIDevice;
203typedef struct SerialState SerialState;
204typedef struct IRQState *qemu_irq;
Paul Brookbc24a222009-05-10 01:44:56 +0100205typedef struct PCMCIACardState PCMCIACardState;
206typedef struct MouseTransformInfo MouseTransformInfo;
207typedef struct uWireSlave uWireSlave;
208typedef struct I2SCodec I2SCodec;
Paul Brookaae94602009-05-14 22:35:06 +0100209typedef struct DeviceState DeviceState;
Paul Brook90d37232009-05-14 22:35:09 +0100210typedef struct SSIBus SSIBus;
pbrook87ecb682007-11-17 17:14:51 +0000211
pbrookb3c77242008-06-30 16:31:04 +0000212/* CPU save/load. */
213void cpu_save(QEMUFile *f, void *opaque);
214int cpu_load(QEMUFile *f, void *opaque, int version_id);
215
aliguori9e472e12008-10-08 19:50:24 +0000216/* Force QEMU to stop what it's doing and service IO */
217void qemu_service_io(void);
218
aliguorid9f75a42009-04-24 18:03:11 +0000219/* Force QEMU to process pending events */
220void qemu_notify_event(void);
221
aliguori8edac962009-04-24 18:03:45 +0000222/* Unblock cpu */
223void qemu_cpu_kick(void *env);
224int qemu_cpu_self(void *env);
225
aliguori0bf46a42009-04-24 18:03:41 +0000226#ifdef CONFIG_USER_ONLY
227#define qemu_init_vcpu(env) do { } while (0)
228#else
229void qemu_init_vcpu(void *env);
230#endif
231
aliguori44e3ee82009-01-22 16:59:20 +0000232typedef struct QEMUIOVector {
233 struct iovec *iov;
234 int niov;
235 int nalloc;
aliguori249aa742009-01-26 17:17:52 +0000236 size_t size;
aliguori44e3ee82009-01-22 16:59:20 +0000237} QEMUIOVector;
238
239void qemu_iovec_init(QEMUIOVector *qiov, int alloc_hint);
aliguori522584a2009-03-28 17:46:10 +0000240void qemu_iovec_init_external(QEMUIOVector *qiov, struct iovec *iov, int niov);
aliguori44e3ee82009-01-22 16:59:20 +0000241void qemu_iovec_add(QEMUIOVector *qiov, void *base, size_t len);
Kevin Wolf40b4f532009-09-09 17:53:37 +0200242void qemu_iovec_concat(QEMUIOVector *dst, QEMUIOVector *src, size_t size);
aliguori44e3ee82009-01-22 16:59:20 +0000243void qemu_iovec_destroy(QEMUIOVector *qiov);
aliguoribe959462009-02-05 21:23:54 +0000244void qemu_iovec_reset(QEMUIOVector *qiov);
aliguori44e3ee82009-01-22 16:59:20 +0000245void qemu_iovec_to_buffer(QEMUIOVector *qiov, void *buf);
aliguori249aa742009-01-26 17:17:52 +0000246void qemu_iovec_from_buffer(QEMUIOVector *qiov, const void *buf, size_t count);
aliguori44e3ee82009-01-22 16:59:20 +0000247
aliguori376253e2009-03-05 23:01:23 +0000248struct Monitor;
249typedef struct Monitor Monitor;
250
Anthony Liguori0bfe3ca2009-05-14 19:29:53 +0100251#include "module.h"
252
blueswir17d99a002009-01-14 19:00:36 +0000253#endif /* dyngen-exec.h hack */
254
pbrookfaf07962007-11-11 02:51:17 +0000255#endif