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