]>
Commit | Line | Data |
---|---|---|
faf07963 PB |
1 | /* Common header file that is included by all of qemu. */ |
2 | #ifndef QEMU_COMMON_H | |
3 | #define QEMU_COMMON_H | |
4 | ||
5c026320 | 5 | #include "compiler.h" |
beb6f0de KW |
6 | #include "config-host.h" |
7 | ||
332ae28d PB |
8 | #if defined(__arm__) || defined(__sparc__) || defined(__mips__) || defined(__hppa__) || defined(__ia64__) |
9 | #define WORDS_ALIGNED | |
10 | #endif | |
11 | ||
082b5557 | 12 | #define TFR(expr) do { if ((expr) != -1) break; } while (errno == EINTR) |
24ebf5f3 | 13 | |
29e922b6 BS |
14 | typedef struct QEMUTimer QEMUTimer; |
15 | typedef struct QEMUFile QEMUFile; | |
92a16d7a | 16 | typedef struct DeviceState DeviceState; |
29e922b6 | 17 | |
316378e4 JK |
18 | struct Monitor; |
19 | typedef struct Monitor Monitor; | |
20 | ||
faf07963 PB |
21 | /* we put basic includes here to avoid repeating them in device drivers */ |
22 | #include <stdlib.h> | |
23 | #include <stdio.h> | |
24 | #include <stdarg.h> | |
11165820 | 25 | #include <stdbool.h> |
faf07963 | 26 | #include <string.h> |
c8906845 | 27 | #include <strings.h> |
faf07963 PB |
28 | #include <inttypes.h> |
29 | #include <limits.h> | |
30 | #include <time.h> | |
31 | #include <ctype.h> | |
32 | #include <errno.h> | |
33 | #include <unistd.h> | |
34 | #include <fcntl.h> | |
35 | #include <sys/stat.h> | |
dcfd0865 | 36 | #include <sys/time.h> |
55616505 | 37 | #include <assert.h> |
86f69a92 | 38 | #include <signal.h> |
14015304 | 39 | #include <glib.h> |
faf07963 | 40 | |
082b5557 BS |
41 | #ifdef _WIN32 |
42 | #include "qemu-os-win32.h" | |
43 | #endif | |
44 | ||
45 | #ifdef CONFIG_POSIX | |
46 | #include "qemu-os-posix.h" | |
47 | #endif | |
48 | ||
faf07963 PB |
49 | #ifndef O_LARGEFILE |
50 | #define O_LARGEFILE 0 | |
51 | #endif | |
52 | #ifndef O_BINARY | |
53 | #define O_BINARY 0 | |
54 | #endif | |
0e74e66b JQ |
55 | #ifndef MAP_ANONYMOUS |
56 | #define MAP_ANONYMOUS MAP_ANON | |
57 | #endif | |
faf07963 PB |
58 | #ifndef ENOMEDIUM |
59 | #define ENOMEDIUM ENODEV | |
60 | #endif | |
4c955388 | 61 | #if !defined(ENOTSUP) |
2880bc32 JQ |
62 | #define ENOTSUP 4096 |
63 | #endif | |
2084a8e3 PB |
64 | #if !defined(ECANCELED) |
65 | #define ECANCELED 4097 | |
66 | #endif | |
3c9405a0 GH |
67 | #ifndef TIME_MAX |
68 | #define TIME_MAX LONG_MAX | |
69 | #endif | |
faf07963 | 70 | |
c0fd260e SW |
71 | /* HOST_LONG_BITS is the size of a native pointer in bits. */ |
72 | #if UINTPTR_MAX == UINT32_MAX | |
73 | # define HOST_LONG_BITS 32 | |
74 | #elif UINTPTR_MAX == UINT64_MAX | |
75 | # define HOST_LONG_BITS 64 | |
76 | #else | |
77 | # error Unknown pointer size | |
78 | #endif | |
79 | ||
6114fdb0 JQ |
80 | #ifndef CONFIG_IOVEC |
81 | #define CONFIG_IOVEC | |
bf9298b9 AL |
82 | struct iovec { |
83 | void *iov_base; | |
84 | size_t iov_len; | |
85 | }; | |
e2a305fb CH |
86 | /* |
87 | * Use the same value as Linux for now. | |
88 | */ | |
89 | #define IOV_MAX 1024 | |
331dadde BS |
90 | #else |
91 | #include <sys/uio.h> | |
bf9298b9 AL |
92 | #endif |
93 | ||
f868445a SW |
94 | typedef int (*fprintf_function)(FILE *f, const char *fmt, ...) |
95 | GCC_FMT_ATTR(2, 3); | |
96 | ||
faf07963 | 97 | #ifdef _WIN32 |
faf07963 | 98 | #define fsync _commit |
371c6489 SW |
99 | #if !defined(lseek) |
100 | # define lseek _lseeki64 | |
101 | #endif | |
64b85a8f | 102 | int qemu_ftruncate64(int, int64_t); |
371c6489 SW |
103 | #if !defined(ftruncate) |
104 | # define ftruncate qemu_ftruncate64 | |
105 | #endif | |
faf07963 | 106 | |
faf07963 PB |
107 | static inline char *realpath(const char *path, char *resolved_path) |
108 | { | |
109 | _fullpath(resolved_path, path, _MAX_PATH); | |
110 | return resolved_path; | |
111 | } | |
faf07963 PB |
112 | #endif |
113 | ||
946fb27c PB |
114 | /* icount */ |
115 | void configure_icount(const char *option); | |
116 | extern int use_icount; | |
117 | ||
faf07963 PB |
118 | /* FIXME: Remove NEED_CPU_H. */ |
119 | #ifndef NEED_CPU_H | |
120 | ||
faf07963 PB |
121 | #include "osdep.h" |
122 | #include "bswap.h" | |
123 | ||
124 | #else | |
125 | ||
126 | #include "cpu.h" | |
127 | ||
128 | #endif /* !defined(NEED_CPU_H) */ | |
129 | ||
3bbbee18 AF |
130 | /* main function, renamed */ |
131 | #if defined(CONFIG_COCOA) | |
132 | int qemu_main(int argc, char **argv, char **envp); | |
133 | #endif | |
134 | ||
f6503059 AZ |
135 | void qemu_get_timedate(struct tm *tm, int offset); |
136 | int qemu_timedate_diff(struct tm *tm); | |
137 | ||
faf07963 PB |
138 | /* cutils.c */ |
139 | void pstrcpy(char *buf, int buf_size, const char *str); | |
140 | char *pstrcat(char *buf, int buf_size, const char *s); | |
141 | int strstart(const char *str, const char *val, const char **ptr); | |
142 | int stristart(const char *str, const char *val, const char **ptr); | |
d43277c5 | 143 | int qemu_strnlen(const char *s, int max_len); |
faf07963 | 144 | time_t mktimegm(struct tm *tm); |
ad46db9a | 145 | int qemu_fls(int i); |
6f1953c4 | 146 | int qemu_fdatasync(int fd); |
db1a4972 | 147 | int fcntl_setfl(int fd, int flag); |
443916d1 | 148 | int qemu_parse_fd(const char *param); |
d8427002 | 149 | |
d7142456 JS |
150 | /* |
151 | * strtosz() suffixes used to specify the default treatment of an | |
152 | * argument passed to strtosz() without an explicit suffix. | |
153 | * These should be defined using upper case characters in the range | |
154 | * A-Z, as strtosz() will use qemu_toupper() on the given argument | |
155 | * prior to comparison. | |
156 | */ | |
d8427002 JS |
157 | #define STRTOSZ_DEFSUFFIX_TB 'T' |
158 | #define STRTOSZ_DEFSUFFIX_GB 'G' | |
159 | #define STRTOSZ_DEFSUFFIX_MB 'M' | |
160 | #define STRTOSZ_DEFSUFFIX_KB 'K' | |
161 | #define STRTOSZ_DEFSUFFIX_B 'B' | |
70b4f4bb JS |
162 | int64_t strtosz(const char *nptr, char **end); |
163 | int64_t strtosz_suffix(const char *nptr, char **end, const char default_suffix); | |
a732e1ba JR |
164 | int64_t strtosz_suffix_unit(const char *nptr, char **end, |
165 | const char default_suffix, int64_t unit); | |
faf07963 | 166 | |
37022086 BS |
167 | /* path.c */ |
168 | void init_paths(const char *prefix); | |
169 | const char *path(const char *pathname); | |
170 | ||
cd390083 BS |
171 | #define qemu_isalnum(c) isalnum((unsigned char)(c)) |
172 | #define qemu_isalpha(c) isalpha((unsigned char)(c)) | |
173 | #define qemu_iscntrl(c) iscntrl((unsigned char)(c)) | |
174 | #define qemu_isdigit(c) isdigit((unsigned char)(c)) | |
175 | #define qemu_isgraph(c) isgraph((unsigned char)(c)) | |
176 | #define qemu_islower(c) islower((unsigned char)(c)) | |
177 | #define qemu_isprint(c) isprint((unsigned char)(c)) | |
178 | #define qemu_ispunct(c) ispunct((unsigned char)(c)) | |
179 | #define qemu_isspace(c) isspace((unsigned char)(c)) | |
180 | #define qemu_isupper(c) isupper((unsigned char)(c)) | |
181 | #define qemu_isxdigit(c) isxdigit((unsigned char)(c)) | |
182 | #define qemu_tolower(c) tolower((unsigned char)(c)) | |
183 | #define qemu_toupper(c) toupper((unsigned char)(c)) | |
184 | #define qemu_isascii(c) isascii((unsigned char)(c)) | |
185 | #define qemu_toascii(c) toascii((unsigned char)(c)) | |
186 | ||
b152aa84 | 187 | void *qemu_oom_check(void *ptr); |
ca10f867 | 188 | |
40ff6d7e | 189 | int qemu_open(const char *name, int flags, ...); |
7c7c0629 JQ |
190 | ssize_t qemu_write_full(int fd, const void *buf, size_t count) |
191 | QEMU_WARN_UNUSED_RESULT; | |
993295fe PB |
192 | ssize_t qemu_send_full(int fd, const void *buf, size_t count, int flags) |
193 | QEMU_WARN_UNUSED_RESULT; | |
8c5135f9 | 194 | ssize_t qemu_recv_full(int fd, void *buf, size_t count, int flags) |
993295fe | 195 | QEMU_WARN_UNUSED_RESULT; |
40ff6d7e KW |
196 | |
197 | #ifndef _WIN32 | |
f3dfda61 | 198 | int qemu_eventfd(int pipefd[2]); |
40ff6d7e KW |
199 | int qemu_pipe(int pipefd[2]); |
200 | #endif | |
201 | ||
00aa0040 BS |
202 | #ifdef _WIN32 |
203 | #define qemu_recv(sockfd, buf, len, flags) recv(sockfd, (void *)buf, len, flags) | |
204 | #else | |
205 | #define qemu_recv(sockfd, buf, len, flags) recv(sockfd, buf, len, flags) | |
206 | #endif | |
207 | ||
87ecb68b PB |
208 | /* Error handling. */ |
209 | ||
e5924d89 | 210 | void QEMU_NORETURN hw_error(const char *fmt, ...) GCC_FMT_ATTR(1, 2); |
87ecb68b | 211 | |
87ecb68b PB |
212 | struct ParallelIOArg { |
213 | void *buffer; | |
214 | int count; | |
215 | }; | |
216 | ||
217 | typedef int (*DMA_transfer_handler) (void *opaque, int nchan, int pos, int size); | |
218 | ||
219 | /* A load of opaque types so that device init declarations don't have to | |
220 | pull in all the real definitions. */ | |
221 | typedef struct NICInfo NICInfo; | |
1ae26a18 | 222 | typedef struct HCIInfo HCIInfo; |
87ecb68b PB |
223 | typedef struct AudioState AudioState; |
224 | typedef struct BlockDriverState BlockDriverState; | |
2446333c | 225 | typedef struct DriveInfo DriveInfo; |
87ecb68b | 226 | typedef struct DisplayState DisplayState; |
7d957bd8 AL |
227 | typedef struct DisplayChangeListener DisplayChangeListener; |
228 | typedef struct DisplaySurface DisplaySurface; | |
7b5d76da | 229 | typedef struct DisplayAllocator DisplayAllocator; |
7d957bd8 | 230 | typedef struct PixelFormat PixelFormat; |
87ecb68b | 231 | typedef struct TextConsole TextConsole; |
c60e08d9 | 232 | typedef TextConsole QEMUConsole; |
87ecb68b | 233 | typedef struct CharDriverState CharDriverState; |
76d32cba | 234 | typedef struct MACAddr MACAddr; |
87ecb68b | 235 | typedef struct VLANState VLANState; |
f7105843 | 236 | typedef struct VLANClientState VLANClientState; |
87ecb68b | 237 | typedef struct i2c_bus i2c_bus; |
48a18b3c | 238 | typedef struct ISABus ISABus; |
87ecb68b | 239 | typedef struct SMBusDevice SMBusDevice; |
fb47a2e9 IY |
240 | typedef struct PCIHostState PCIHostState; |
241 | typedef struct PCIExpressHost PCIExpressHost; | |
87ecb68b PB |
242 | typedef struct PCIBus PCIBus; |
243 | typedef struct PCIDevice PCIDevice; | |
0428527c | 244 | typedef struct PCIExpressDevice PCIExpressDevice; |
68f79994 | 245 | typedef struct PCIBridge PCIBridge; |
34e65944 IY |
246 | typedef struct PCIEAERMsg PCIEAERMsg; |
247 | typedef struct PCIEAERLog PCIEAERLog; | |
248 | typedef struct PCIEAERErr PCIEAERErr; | |
bc20ba98 IY |
249 | typedef struct PCIEPort PCIEPort; |
250 | typedef struct PCIESlot PCIESlot; | |
14de9bab | 251 | typedef struct MSIMessage MSIMessage; |
87ecb68b PB |
252 | typedef struct SerialState SerialState; |
253 | typedef struct IRQState *qemu_irq; | |
bc24a225 PB |
254 | typedef struct PCMCIACardState PCMCIACardState; |
255 | typedef struct MouseTransformInfo MouseTransformInfo; | |
256 | typedef struct uWireSlave uWireSlave; | |
257 | typedef struct I2SCodec I2SCodec; | |
90d37239 | 258 | typedef struct SSIBus SSIBus; |
2292b339 | 259 | typedef struct EventNotifier EventNotifier; |
2be24aaa | 260 | typedef struct VirtIODevice VirtIODevice; |
d35bf9ad | 261 | typedef struct QEMUSGList QEMUSGList; |
1dc324d2 | 262 | typedef struct SHPCDevice SHPCDevice; |
87ecb68b | 263 | |
186993ee MT |
264 | typedef uint64_t pcibus_t; |
265 | ||
4e4fa398 JK |
266 | typedef enum LostTickPolicy { |
267 | LOST_TICK_DISCARD, | |
268 | LOST_TICK_DELAY, | |
269 | LOST_TICK_MERGE, | |
270 | LOST_TICK_SLEW, | |
1ce05125 | 271 | LOST_TICK_MAX |
4e4fa398 JK |
272 | } LostTickPolicy; |
273 | ||
d5ab9713 JK |
274 | void tcg_exec_init(unsigned long tb_size); |
275 | bool tcg_enabled(void); | |
276 | ||
277 | void cpu_exec_init_all(void); | |
d2053c3c | 278 | |
b3c7724c PB |
279 | /* CPU save/load. */ |
280 | void cpu_save(QEMUFile *f, void *opaque); | |
281 | int cpu_load(QEMUFile *f, void *opaque, int version_id); | |
282 | ||
8edac960 AL |
283 | /* Unblock cpu */ |
284 | void qemu_cpu_kick(void *env); | |
46d62fac | 285 | void qemu_cpu_kick_self(void); |
b7680cb6 | 286 | int qemu_cpu_is_self(void *env); |
ab33fcda | 287 | bool all_cpu_threads_idle(void); |
8edac960 | 288 | |
e82bcec2 MT |
289 | /* work queue */ |
290 | struct qemu_work_item { | |
291 | struct qemu_work_item *next; | |
292 | void (*func)(void *data); | |
293 | void *data; | |
294 | int done; | |
295 | }; | |
296 | ||
0bf46a40 AL |
297 | #ifdef CONFIG_USER_ONLY |
298 | #define qemu_init_vcpu(env) do { } while (0) | |
299 | #else | |
300 | void qemu_init_vcpu(void *env); | |
301 | #endif | |
302 | ||
8c5135f9 PB |
303 | /** |
304 | * Sends an iovec (or optionally a part of it) down a socket, yielding | |
305 | * when the socket is full. | |
306 | */ | |
307 | int qemu_co_sendv(int sockfd, struct iovec *iov, | |
308 | int len, int iov_offset); | |
309 | ||
310 | /** | |
311 | * Receives data into an iovec (or optionally into a part of it) from | |
312 | * a socket, yielding when there is no data in the socket. | |
313 | */ | |
314 | int qemu_co_recvv(int sockfd, struct iovec *iov, | |
315 | int len, int iov_offset); | |
316 | ||
317 | ||
318 | /** | |
319 | * Sends a buffer down a socket, yielding when the socket is full. | |
320 | */ | |
321 | int qemu_co_send(int sockfd, void *buf, int len); | |
322 | ||
323 | /** | |
324 | * Receives data into a buffer from a socket, yielding when there | |
325 | * is no data in the socket. | |
326 | */ | |
327 | int qemu_co_recv(int sockfd, void *buf, int len); | |
328 | ||
329 | ||
44e3ee8a AL |
330 | typedef struct QEMUIOVector { |
331 | struct iovec *iov; | |
332 | int niov; | |
333 | int nalloc; | |
249aa745 | 334 | size_t size; |
44e3ee8a AL |
335 | } QEMUIOVector; |
336 | ||
337 | void qemu_iovec_init(QEMUIOVector *qiov, int alloc_hint); | |
522584a5 | 338 | void qemu_iovec_init_external(QEMUIOVector *qiov, struct iovec *iov, int niov); |
44e3ee8a | 339 | void qemu_iovec_add(QEMUIOVector *qiov, void *base, size_t len); |
1b093c48 MT |
340 | void qemu_iovec_concat(QEMUIOVector *dst, |
341 | QEMUIOVector *src, size_t soffset, size_t sbytes); | |
44e3ee8a | 342 | void qemu_iovec_destroy(QEMUIOVector *qiov); |
be959463 | 343 | void qemu_iovec_reset(QEMUIOVector *qiov); |
d5e6b161 MT |
344 | size_t qemu_iovec_to_buf(QEMUIOVector *qiov, size_t offset, |
345 | void *buf, size_t bytes); | |
03396148 MT |
346 | size_t qemu_iovec_from_buf(QEMUIOVector *qiov, size_t offset, |
347 | const void *buf, size_t bytes); | |
3d9b4925 MT |
348 | size_t qemu_iovec_memset(QEMUIOVector *qiov, size_t offset, |
349 | int fillc, size_t bytes); | |
44e3ee8a | 350 | |
1a6d39fd SH |
351 | bool buffer_is_zero(const void *buf, size_t len); |
352 | ||
6b837bc4 JS |
353 | void qemu_progress_init(int enabled, float min_skip); |
354 | void qemu_progress_end(void); | |
3bfe4dbf | 355 | void qemu_progress_print(float delta, int max); |
6b837bc4 | 356 | |
082b5557 BS |
357 | #define QEMU_FILE_TYPE_BIOS 0 |
358 | #define QEMU_FILE_TYPE_KEYMAP 1 | |
359 | char *qemu_find_file(int type, const char *name); | |
360 | ||
361 | /* OS specific functions */ | |
362 | void os_setup_early_signal_handling(void); | |
363 | char *os_find_datadir(const char *argv0); | |
364 | void os_parse_cmd_args(int index, const char *optarg); | |
365 | void os_pidfile_error(void); | |
366 | ||
abd0c6bd PB |
367 | /* Convert a byte between binary and BCD. */ |
368 | static inline uint8_t to_bcd(uint8_t val) | |
369 | { | |
370 | return ((val / 10) << 4) | (val % 10); | |
371 | } | |
372 | ||
373 | static inline uint8_t from_bcd(uint8_t val) | |
374 | { | |
375 | return ((val >> 4) * 10) + (val & 0x0f); | |
376 | } | |
377 | ||
338b922e | 378 | /* compute with 96 bit intermediate result: (a*b)/c */ |
379 | static inline uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c) | |
380 | { | |
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; | |
392 | ||
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; | |
400 | } | |
401 | ||
3951690a SH |
402 | /* Round number down to multiple */ |
403 | #define QEMU_ALIGN_DOWN(n, m) ((n) / (m) * (m)) | |
404 | ||
405 | /* Round number up to multiple */ | |
406 | #define QEMU_ALIGN_UP(n, m) QEMU_ALIGN_DOWN((n) + (m) - 1, (m)) | |
407 | ||
0bfe3ca5 AL |
408 | #include "module.h" |
409 | ||
faf07963 | 410 | #endif |